diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2010-03-06 14:05:49 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2010-03-06 14:05:49 +0100 |
commit | 5a5eae4d528c7c82344d26fc4f11d59dabe93b64 (patch) | |
tree | 1506f35777406f810a36a87746becbd46f1ae7b3 /portato/gui/windows/about.py | |
parent | 2cc5d1c938855c1cb5f225084179c80ca4885021 (diff) | |
parent | 03b70f264123e9afc8202e29b884c42584108e92 (diff) | |
download | portato-5a5eae4d528c7c82344d26fc4f11d59dabe93b64.tar.gz portato-5a5eae4d528c7c82344d26fc4f11d59dabe93b64.tar.bz2 portato-5a5eae4d528c7c82344d26fc4f11d59dabe93b64.zip |
Merge branch 'best_icon'.
Now an icon is shown marking the 'best' version of a package.
Diffstat (limited to 'portato/gui/windows/about.py')
-rw-r--r-- | portato/gui/windows/about.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/portato/gui/windows/about.py b/portato/gui/windows/about.py index 6d3dcbb..a15fd24 100644 --- a/portato/gui/windows/about.py +++ b/portato/gui/windows/about.py @@ -15,7 +15,7 @@ from __future__ import absolute_import import gtk from .basic import AbstractDialog -from ...constants import VERSION, REVISION, APP_ICON +from ...constants import VERSION, REVISION class AboutWindow (AbstractDialog): """A window showing the "about"-informations.""" @@ -24,11 +24,8 @@ class AboutWindow (AbstractDialog): AbstractDialog.__init__(self, parent) - img = gtk.Image() - img.set_from_file(APP_ICON) - self.window.set_version(VERSION) - self.window.set_logo(img.get_pixbuf()) + self.window.set_logo(None) if REVISION: gitlabel = self.tree.get_widget("gitLabel") |