summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/gui/mainwindow.py
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2014-07-24 16:33:25 -0300
committerTomás Touceda <chiiph@leap.se>2014-07-24 16:40:55 -0300
commitbeac7a8ce70acb17c320580538510761dff3ac93 (patch)
tree4611dae3ee1a8a545a411a54e3174ab9feb54e30 /src/leap/bitmask/gui/mainwindow.py
parentc01e87456bc5fded14778251bbd5dfe4fc4ebbd0 (diff)
Improve hide and show main window on Ubuntu
Diffstat (limited to 'src/leap/bitmask/gui/mainwindow.py')
-rw-r--r--src/leap/bitmask/gui/mainwindow.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/leap/bitmask/gui/mainwindow.py b/src/leap/bitmask/gui/mainwindow.py
index ff19e17f..383f97bb 100644
--- a/src/leap/bitmask/gui/mainwindow.py
+++ b/src/leap/bitmask/gui/mainwindow.py
@@ -999,6 +999,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: