diff options
author | kali <kali@leap.se> | 2012-11-19 23:15:36 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-11-19 23:15:36 +0900 |
commit | 4153bee65d2541b99d4e41aaaf2fd6b2b71b2cc3 (patch) | |
tree | c9697911c3c3d750bd45c020d10d7eb4cdfbe4c0 /src/leap/gui/firstrun/wizard.py | |
parent | 78db9729c2f6714df4739b28d66be845019a1bf6 (diff) |
disable "next" button during validation
and wait for user to click it.
Closes #973
Diffstat (limited to 'src/leap/gui/firstrun/wizard.py')
-rwxr-xr-x | src/leap/gui/firstrun/wizard.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/leap/gui/firstrun/wizard.py b/src/leap/gui/firstrun/wizard.py index bbb48149..8efa2018 100755 --- a/src/leap/gui/firstrun/wizard.py +++ b/src/leap/gui/firstrun/wizard.py @@ -137,6 +137,9 @@ class FirstRunWizard(QtGui.QWizard): QtGui.QWizard.BackgroundPixmap, QtGui.QPixmap(':/images/background.png')) + # set options + self.setOption(QtGui.QWizard.IndependentPages, on=False) + self.setWindowTitle("First Run Wizard") # TODO: set style for MAC / windows ... |