diff options
Diffstat (limited to 'src/leap/baseapp/leap_app.py')
-rw-r--r-- | src/leap/baseapp/leap_app.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/leap/baseapp/leap_app.py b/src/leap/baseapp/leap_app.py index 208c4e7c..98ca292e 100644 --- a/src/leap/baseapp/leap_app.py +++ b/src/leap/baseapp/leap_app.py @@ -23,11 +23,10 @@ class MainWindowMixin(object): widget = QtGui.QWidget() self.setCentralWidget(widget) - self.createWindowHeader() - # add widgets to layout + #self.createWindowHeader() mainLayout = QtGui.QVBoxLayout() - mainLayout.addWidget(self.headerBox) + #mainLayout.addWidget(self.headerBox) mainLayout.addWidget(self.statusIconBox) if self.debugmode: mainLayout.addWidget(self.statusBox) @@ -38,6 +37,7 @@ class MainWindowMixin(object): self.set_app_icon() self.resize(400, 300) self.set_statusbarMessage('ready') + logger.debug('set ready.........') def set_app_icon(self): icon = QtGui.QIcon(APP_LOGO) |