summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2016-04-17 08:52:26 -0700
committerKali Kaneko <kali@leap.se>2016-04-18 16:19:14 -0400
commitb91263cba4078a7c4d19de0c31060cb7564ae410 (patch)
treee61aa86dd1d07e095b4443ad2e9e4b648589deb2
parentab6746623c8907e710c053cf73db036d9c432964 (diff)
[bug] enable first page in wizard
- Resolves: #8041 - Releases: 0.9.2
-rw-r--r--src/leap/bitmask/gui/mainwindow.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/leap/bitmask/gui/mainwindow.py b/src/leap/bitmask/gui/mainwindow.py
index 168de8ed..20909038 100644
--- a/src/leap/bitmask/gui/mainwindow.py
+++ b/src/leap/bitmask/gui/mainwindow.py
@@ -448,6 +448,9 @@ class MainWindow(QtGui.QMainWindow, SignalTracker):
# Refer to http://www.themacaque.com/?p=1067 for funny details.
self._wizard.show()
if IS_MAC:
+ # XXX hack. For some reason, there's a signal that doesn't arrive
+ # on time, so that the next button is disabled. See #8041
+ self._wizard.page(self._wizard.INTRO_PAGE).set_completed()
self._wizard.raise_()
self._settings.set_skip_first_run(True)