diff --git a/reflowctl_gui.py b/reflowctl_gui.py index 4079fa1..2016955 100755 --- a/reflowctl_gui.py +++ b/reflowctl_gui.py @@ -317,10 +317,13 @@ class ApplicationWindow(QtGui.QMainWindow): self.main_widget = QtGui.QWidget(self) self.profile_widget = QtGui.QWidget(self) + self.profile_steps = QtGui.QGroupBox(self) self.dpi = 100 pl = QtGui.QHBoxLayout(self.profile_widget) + sl = QtGui.QVBoxLayout(self.profile_steps) + self.solder_model = SolderListModel(self) self.solder_view = QtGui.QListView() self.solder_view.setModel(self.solder_model)