From 01905113041a9a6c3930fe24af3581c74cc81d76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=B6gl?= Date: Thu, 15 Nov 2012 19:26:04 +0100 Subject: [PATCH] sync --- reflowctl_gui.py | 3 +++ 1 file changed, 3 insertions(+) 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)