diff options
author | Kali Kaneko <kali@leap.se> | 2016-04-17 08:52:26 -0700 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2016-04-18 16:19:14 -0400 |
commit | b91263cba4078a7c4d19de0c31060cb7564ae410 (patch) | |
tree | e61aa86dd1d07e095b4443ad2e9e4b648589deb2 /src/leap/bitmask/gui | |
parent | ab6746623c8907e710c053cf73db036d9c432964 (diff) |
[bug] enable first page in wizard
- Resolves: #8041
- Releases: 0.9.2
Diffstat (limited to 'src/leap/bitmask/gui')
-rw-r--r-- | src/leap/bitmask/gui/mainwindow.py | 3 |
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) |