summaryrefslogtreecommitdiff
path: root/src/leap/gui/firstrun/last.py
diff options
context:
space:
mode:
authorkali <kali@leap.se>2013-02-01 00:49:10 +0900
committerkali <kali@leap.se>2013-02-01 00:49:10 +0900
commitb0b3f61777a264f53c73e7eeca7033b855fa2743 (patch)
tree91cebe7e1970583736a2f243ef12226ef7f723d6 /src/leap/gui/firstrun/last.py
parent88879330a550abd506b67e251a654d8aeddd5482 (diff)
add watermark image to wizard
Diffstat (limited to 'src/leap/gui/firstrun/last.py')
-rw-r--r--src/leap/gui/firstrun/last.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/leap/gui/firstrun/last.py b/src/leap/gui/firstrun/last.py
index f3e467db..6a01ba34 100644
--- a/src/leap/gui/firstrun/last.py
+++ b/src/leap/gui/firstrun/last.py
@@ -6,7 +6,7 @@ import logging
from PyQt4 import QtGui
from leap.util.coroutines import coroutine
-from leap.gui.constants import APP_LOGO
+from leap.gui.constants import APP_LOGO, APP_WATERMARK
logger = logging.getLogger(__name__)
@@ -19,13 +19,13 @@ class LastPage(QtGui.QWizardPage):
"Connecting to Encrypted Internet Proxy service..."))
self.setPixmap(
+ QtGui.QWizard.WatermarkPixmap,
+ QtGui.QPixmap(APP_WATERMARK))
+
+ self.setPixmap(
QtGui.QWizard.LogoPixmap,
QtGui.QPixmap(APP_LOGO))
- #self.setPixmap(
- #QtGui.QWizard.WatermarkPixmap,
- #QtGui.QPixmap(':/images/watermark2.png'))
-
self.label = QtGui.QLabel()
self.label.setWordWrap(True)