diff options
author | elijah <elijah@riseup.net> | 2014-08-11 15:35:33 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-08-11 15:35:33 -0700 |
commit | 6771ba8958d385509f7cc55acab13fe14873e0c2 (patch) | |
tree | 8898726486237d4efa249963e7bdf1596aa79ad3 /src/leap/bitmask/gui/wizard.py | |
parent | 6aa7612ceb05269dfc3aaa02a961ddaef67908df (diff) |
used 22x22 pixel icons instead of 24x24 pixel icons (since ubuntu needs 22 anyway)
Diffstat (limited to 'src/leap/bitmask/gui/wizard.py')
-rw-r--r-- | src/leap/bitmask/gui/wizard.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/leap/bitmask/gui/wizard.py b/src/leap/bitmask/gui/wizard.py index 175d744c..0223c053 100644 --- a/src/leap/bitmask/gui/wizard.py +++ b/src/leap/bitmask/gui/wizard.py @@ -70,9 +70,9 @@ class Wizard(QtGui.QWizard): self.setPixmap(QtGui.QWizard.LogoPixmap, QtGui.QPixmap(":/images/mask-icon.png")) - self.QUESTION_ICON = QtGui.QPixmap(":/images/black/24/question.png") - self.ERROR_ICON = QtGui.QPixmap(":/images/black/24/off.png") - self.OK_ICON = QtGui.QPixmap(":/images/black/24/on.png") + self.QUESTION_ICON = QtGui.QPixmap(":/images/black/22/question.png") + self.ERROR_ICON = QtGui.QPixmap(":/images/black/22/off.png") + self.OK_ICON = QtGui.QPixmap(":/images/black/22/on.png") self._selected_services = set() self._shown_services = set() |