summaryrefslogtreecommitdiff
path: root/src/leap/gui/wizard.py
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-03-11 18:48:08 -0300
committerTomás Touceda <chiiph@leap.se>2013-03-11 18:48:08 -0300
commitd28912e0a364ba5ed4201e87614ec94b29bd68bf (patch)
treeeb42e61d3b13d0503b44399d6e005c5a05073c7e /src/leap/gui/wizard.py
parent461721850ee668d1a5e612de6af4cf1d2eeeca74 (diff)
Explicitly disable watermark pixmap in wizard
Diffstat (limited to 'src/leap/gui/wizard.py')
-rw-r--r--src/leap/gui/wizard.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/leap/gui/wizard.py b/src/leap/gui/wizard.py
index 90ff7f1b..3a604157 100644
--- a/src/leap/gui/wizard.py
+++ b/src/leap/gui/wizard.py
@@ -60,6 +60,8 @@ class Wizard(QtGui.QWizard):
self.setPixmap(QtGui.QWizard.LogoPixmap,
QtGui.QPixmap(":/images/leap-color-small.png"))
+ self.setPixmap(QtGui.QWizard.WatermarkPixmap, None)
+
self.QUESTION_ICON = QtGui.QPixmap(":/images/Emblem-question.png")
self.ERROR_ICON = QtGui.QPixmap(":/images/Dialog-error.png")
self.OK_ICON = QtGui.QPixmap(":/images/Dialog-accept.png")