diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-08-05 16:03:27 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-08-05 16:27:32 -0300 |
commit | fc74c77101d5210db1b9bdd02b460747d24016da (patch) | |
tree | 18ce6a5052cc74e6dd8170d4c1937f1af645f47a /src | |
parent | 733ebec5f654580b4ed9cbcd767480b2f2c92984 (diff) |
Always raise when setting the window visible
Diffstat (limited to 'src')
-rw-r--r-- | src/leap/gui/mainwindow.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/leap/gui/mainwindow.py b/src/leap/gui/mainwindow.py index 1c1236af..89790239 100644 --- a/src/leap/gui/mainwindow.py +++ b/src/leap/gui/mainwindow.py @@ -603,7 +603,11 @@ class MainWindow(QtGui.QMainWindow): Toggles the window visibility """ - self.setVisible(not self.isVisible()) + if not self.isVisible(): + self.show() + self.raise_() + else: + self.hide() def _center_window(self): """ |