summaryrefslogtreecommitdiff
path: root/portato/gui/windows/about.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2010-03-06 13:27:14 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2010-03-06 13:27:14 +0100
commit255e23062788fda92e57855ce216bd0d38a9d958 (patch)
treebee822573d52cf8a50e8c3dec6656e6f9f8a8167 /portato/gui/windows/about.py
parent15fefdc8c11b352b10f87d1f4c46dd274213cbdc (diff)
downloadportato-255e23062788fda92e57855ce216bd0d38a9d958.tar.gz
portato-255e23062788fda92e57855ce216bd0d38a9d958.tar.bz2
portato-255e23062788fda92e57855ce216bd0d38a9d958.zip
improved image handling
Diffstat (limited to 'portato/gui/windows/about.py')
-rw-r--r--portato/gui/windows/about.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/portato/gui/windows/about.py b/portato/gui/windows/about.py
index 937ed8b..1b8a981 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, APP_ICON
+from ...constants import VERSION
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)
self.window.show_all()