diff options
author | kali <kali@leap.se> | 2013-02-01 00:49:10 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2013-02-01 00:49:10 +0900 |
commit | b0b3f61777a264f53c73e7eeca7033b855fa2743 (patch) | |
tree | 91cebe7e1970583736a2f243ef12226ef7f723d6 /src/leap/gui/firstrun/providerselect.py | |
parent | 88879330a550abd506b67e251a654d8aeddd5482 (diff) |
add watermark image to wizard
Diffstat (limited to 'src/leap/gui/firstrun/providerselect.py')
-rw-r--r-- | src/leap/gui/firstrun/providerselect.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/leap/gui/firstrun/providerselect.py b/src/leap/gui/firstrun/providerselect.py index 917b16fd..36bb4510 100644 --- a/src/leap/gui/firstrun/providerselect.py +++ b/src/leap/gui/firstrun/providerselect.py @@ -16,7 +16,7 @@ from leap.gui import styles from leap.gui.utils import delay from leap.util.web import get_https_domain_and_port -from leap.gui.constants import APP_LOGO +from leap.gui.constants import APP_LOGO, APP_WATERMARK logger = logging.getLogger(__name__) @@ -35,6 +35,10 @@ class SelectProviderPage(InlineValidationPage): "to use for your connection") ) self.setPixmap( + QtGui.QWizard.WatermarkPixmap, + QtGui.QPixmap(APP_WATERMARK)) + + self.setPixmap( QtGui.QWizard.LogoPixmap, QtGui.QPixmap(APP_LOGO)) |