diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-08-12 13:46:53 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-08-12 13:46:53 -0300 |
commit | 5761e301c939418b9f13481e75feca41842e5fb3 (patch) | |
tree | a0e5b4d8e54c7e27d9a41c7226400640012bac87 | |
parent | 00d98a47c60764475d97df1c2eb847e20a77cae5 (diff) |
Replace wizard images with the rainbow mask.
Closes #3425.
-rw-r--r-- | changes/bug-3425_replace-wizard-images | 1 | ||||
-rw-r--r-- | src/leap/gui/ui/wizard.ui | 2 | ||||
-rw-r--r-- | src/leap/gui/wizard.py | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/changes/bug-3425_replace-wizard-images b/changes/bug-3425_replace-wizard-images new file mode 100644 index 00000000..cf5cbd9d --- /dev/null +++ b/changes/bug-3425_replace-wizard-images @@ -0,0 +1 @@ + o Replace wizard images with the rainbow mask. Closes #3425. diff --git a/src/leap/gui/ui/wizard.ui b/src/leap/gui/ui/wizard.ui index a8f66bbc..5e0108dc 100644 --- a/src/leap/gui/ui/wizard.ui +++ b/src/leap/gui/ui/wizard.ui @@ -771,7 +771,7 @@ <string/> </property> <property name="pixmap"> - <pixmap resource="../../../../data/resources/mainwindow.qrc">:/images/leap-color-big.png</pixmap> + <pixmap resource="../../../../data/resources/mainwindow.qrc">:/images/mask-icon.png</pixmap> </property> </widget> </item> diff --git a/src/leap/gui/wizard.py b/src/leap/gui/wizard.py index 2b48fc81..1710b09b 100644 --- a/src/leap/gui/wizard.py +++ b/src/leap/gui/wizard.py @@ -75,7 +75,7 @@ class Wizard(QtGui.QWizard): self.ui.setupUi(self) self.setPixmap(QtGui.QWizard.LogoPixmap, - QtGui.QPixmap(":/images/leap-color-small.png")) + QtGui.QPixmap(":/images/mask-icon.png")) self.QUESTION_ICON = QtGui.QPixmap(":/images/Emblem-question.png") self.ERROR_ICON = QtGui.QPixmap(":/images/Dialog-error.png") |