diff options
author | Ivan Alejandro <ivanalejandro0@yahoo.com.ar> | 2013-07-12 10:09:22 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@yahoo.com.ar> | 2013-07-12 12:51:55 -0300 |
commit | 96b8e05b98ebeb7645f53be6c0116c3212fa6b20 (patch) | |
tree | f337eb0ea856450b6c9644e19e2319698b2232ad /src/leap/gui/mainwindow.py | |
parent | 0ba84b70e18450e13b9270b552def941fb5cb0d6 (diff) |
LoggerWindow toggle button fix. Closes #3152.
Diffstat (limited to 'src/leap/gui/mainwindow.py')
-rw-r--r-- | src/leap/gui/mainwindow.py | 9 |
1 files changed, 9 insertions, 0 deletions
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 |