From b0b3f61777a264f53c73e7eeca7033b855fa2743 Mon Sep 17 00:00:00 2001 From: kali Date: Fri, 1 Feb 2013 00:49:10 +0900 Subject: add watermark image to wizard --- src/leap/gui/firstrun/intro.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/leap/gui/firstrun/intro.py') 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, -- cgit v1.2.3