summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changes/bug_show_hide_improved1
-rw-r--r--src/leap/bitmask/gui/mainwindow.py6
2 files changed, 7 insertions, 0 deletions
diff --git a/changes/bug_show_hide_improved b/changes/bug_show_hide_improved
new file mode 100644
index 00000000..39472074
--- /dev/null
+++ b/changes/bug_show_hide_improved
@@ -0,0 +1 @@
+- Improve Hide and Show Window behavior on Ubuntu. Fixes #5511. \ No newline at end of file
diff --git a/src/leap/bitmask/gui/mainwindow.py b/src/leap/bitmask/gui/mainwindow.py
index 53a7d95a..1bd39267 100644
--- a/src/leap/bitmask/gui/mainwindow.py
+++ b/src/leap/bitmask/gui/mainwindow.py
@@ -960,6 +960,12 @@ class MainWindow(QtGui.QMainWindow):
if not visible:
QtGui.QApplication.setQuitOnLastWindowClosed(True)
self.show()
+ if IS_LINUX:
+ # On ubuntu, activateWindow doesn't work reliably, so
+ # we do the following as a workaround. See
+ # https://bugreports.qt-project.org/browse/QTBUG-24932
+ # for more details
+ QtGui.QX11Info.setAppUserTime(0)
self.activateWindow()
self.raise_()
else: