diff options
| author | kali <kali@leap.se> | 2013-02-01 00:49:10 +0900 | 
|---|---|---|
| committer | kali <kali@leap.se> | 2013-02-13 01:33:26 +0900 | 
| commit | 0f9a1d4bc85def69dae0621eb7daaf5a0ee48004 (patch) | |
| tree | 900a7a4c3d0456347a575a08bd9bad0775b8e2cc /src/leap/gui/firstrun/connect.py | |
| parent | 8ace73da712bd020146e80c8a3821f79dd53384a (diff) | |
add watermark image to wizard
Diffstat (limited to 'src/leap/gui/firstrun/connect.py')
| -rw-r--r-- | src/leap/gui/firstrun/connect.py | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/src/leap/gui/firstrun/connect.py b/src/leap/gui/firstrun/connect.py index ad7bb13a..209174a1 100644 --- a/src/leap/gui/firstrun/connect.py +++ b/src/leap/gui/firstrun/connect.py @@ -12,7 +12,7 @@ from leap.gui.progress import ValidationPage  from leap.util.web import get_https_domain_and_port  from leap.base import auth -from leap.gui.constants import APP_LOGO +from leap.gui.constants import APP_LOGO, APP_WATERMARK  logger = logging.getLogger(__name__) @@ -31,6 +31,10 @@ class ConnectionPage(ValidationPage):          self.setSubTitle(subtitle)          self.setPixmap( +            QtGui.QWizard.WatermarkPixmap, +            QtGui.QPixmap(APP_WATERMARK)) + +        self.setPixmap(              QtGui.QWizard.LogoPixmap,              QtGui.QPixmap(APP_LOGO))  | 
