Skip to content
Snippets Groups Projects
Commit 1512a0c9 authored by Julien Malik's avatar Julien Malik
Browse files

STYLE: fix indent

parent dae349a5
Branches
Tags
No related merge requests found
......@@ -348,13 +348,13 @@ class QParameterGroup(QParameterBase):
form.addRow(w)
if self._paramKey:
# not the root group
group = QtGui.QGroupBox()
group.setTitle( app.GetParameterName(self._paramKey) )
group.setLayout(form)
layout = QtGui.QHBoxLayout()
layout.addWidget(group)
self.setLayout(layout)
# not the root group
group = QtGui.QGroupBox()
group.setTitle( app.GetParameterName(self._paramKey) )
group.setLayout(form)
layout = QtGui.QHBoxLayout()
layout.addWidget(group)
self.setLayout(layout)
else:
self.setLayout(form)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment