summaryrefslogtreecommitdiff
path: root/src/leap/gui/firstrun/intro.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:51:47 +0900
commitc74f3bdca32fa61148ef0691d48d4b2a9c124d9d (patch)
tree28f3668e4c37123fbd2803bf789abcde93f25136 /src/leap/gui/firstrun/intro.py
parent5513d8b138b4dcca340e42e28c3c8582cb2a3c86 (diff)
add watermark image to wizard
Diffstat (limited to 'src/leap/gui/firstrun/intro.py')
-rw-r--r--src/leap/gui/firstrun/intro.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/leap/gui/firstrun/intro.py b/src/leap/gui/firstrun/intro.py
index b519362f..8e5014e6 100644
--- a/src/leap/gui/firstrun/intro.py
+++ b/src/leap/gui/firstrun/intro.py
@@ -4,7 +4,7 @@ Intro page used in first run wizard
from PyQt4 import QtGui
-from leap.gui.constants import APP_LOGO
+from leap.gui.constants import APP_LOGO, APP_WATERMARK
class IntroPage(QtGui.QWizardPage):
@@ -13,9 +13,9 @@ class IntroPage(QtGui.QWizardPage):
self.setTitle(self.tr("First run wizard"))
- #self.setPixmap(
- #QtGui.QWizard.WatermarkPixmap,
- #QtGui.QPixmap(':/images/watermark1.png'))
+ self.setPixmap(
+ QtGui.QWizard.WatermarkPixmap,
+ QtGui.QPixmap(APP_WATERMARK))
self.setPixmap(
QtGui.QWizard.LogoPixmap,