summaryrefslogtreecommitdiff
path: root/src/leap/gui/firstrun/register.py
diff options
context:
space:
mode:
authorkali <kali@leap.se>2013-02-01 00:49:10 +0900
committerkali <kali@leap.se>2013-02-13 01:33:26 +0900
commit0f9a1d4bc85def69dae0621eb7daaf5a0ee48004 (patch)
tree900a7a4c3d0456347a575a08bd9bad0775b8e2cc /src/leap/gui/firstrun/register.py
parent8ace73da712bd020146e80c8a3821f79dd53384a (diff)
add watermark image to wizard
Diffstat (limited to 'src/leap/gui/firstrun/register.py')
-rw-r--r--src/leap/gui/firstrun/register.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/leap/gui/firstrun/register.py b/src/leap/gui/firstrun/register.py
index 15278330..2ae926d1 100644
--- a/src/leap/gui/firstrun/register.py
+++ b/src/leap/gui/firstrun/register.py
@@ -16,7 +16,7 @@ logger = logging.getLogger(__name__)
from leap.base import auth
from leap.gui import styles
-from leap.gui.constants import APP_LOGO, BARE_USERNAME_REGEX
+from leap.gui.constants import APP_LOGO, APP_WATERMARK, BARE_USERNAME_REGEX
from leap.gui.progress import InlineValidationPage
from leap.gui.styles import ErrorLabelStyleSheet
@@ -32,6 +32,10 @@ class RegisterUserPage(InlineValidationPage, UserFormMixIn):
# subtitle is set in the initializePage
self.setPixmap(
+ QtGui.QWizard.WatermarkPixmap,
+ QtGui.QPixmap(APP_WATERMARK))
+
+ self.setPixmap(
QtGui.QWizard.LogoPixmap,
QtGui.QPixmap(APP_LOGO))