From 96b8e05b98ebeb7645f53be6c0116c3212fa6b20 Mon Sep 17 00:00:00 2001 From: Ivan Alejandro Date: Fri, 12 Jul 2013 10:09:22 -0300 Subject: LoggerWindow toggle button fix. Closes #3152. --- src/leap/gui/mainwindow.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/leap/gui/mainwindow.py') diff --git a/src/leap/gui/mainwindow.py b/src/leap/gui/mainwindow.py index 4874de80..ba546fd0 100644 --- a/src/leap/gui/mainwindow.py +++ b/src/leap/gui/mainwindow.py @@ -369,6 +369,15 @@ class MainWindow(QtGui.QMainWindow): self._logger_window.setVisible(not self._logger_window.isVisible()) self.ui.btnShowLog.setChecked(self._logger_window.isVisible()) + self._logger_window.finished.connect(self._uncheck_logger_button) + + def _uncheck_logger_button(self): + """ + SLOT + Sets the checked state of the loggerwindow button to false. + """ + self.ui.btnShowLog.setChecked(False) + def _new_updates_available(self, req): """ Callback for the new updates event -- cgit v1.2.3