summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/gui/mainwindow.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask/gui/mainwindow.py')
-rw-r--r--src/leap/bitmask/gui/mainwindow.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/leap/bitmask/gui/mainwindow.py b/src/leap/bitmask/gui/mainwindow.py
index 776323bc..6dd28f04 100644
--- a/src/leap/bitmask/gui/mainwindow.py
+++ b/src/leap/bitmask/gui/mainwindow.py
@@ -613,7 +613,7 @@ class MainWindow(QtGui.QMainWindow):
self.tr("Hide Main Window"))[int(visible)]
# set labels
- visible = self.isVisible()
+ visible = self.isVisible() and self.isActiveWindow()
self._action_visible.setText(get_action(visible))
def _toggle_visible(self):
@@ -623,8 +623,10 @@ class MainWindow(QtGui.QMainWindow):
Toggles the window visibility
"""
- if not self.isVisible():
+ visible = self.isVisible() and self.isActiveWindow()
+ if not visible:
self.show()
+ self.activateWindow()
self.raise_()
else:
self.hide()