diff options
author | necoro <> | 2007-06-12 20:55:53 +0000 |
---|---|---|
committer | necoro <> | 2007-06-12 20:55:53 +0000 |
commit | cc8a41e09db8ad0b0666a30832d4b510b71ab5c4 (patch) | |
tree | 39db5afe75a820e93d352a48ce58894646be3e68 /portato/gui/qt | |
parent | 5ac9a566dcb8b59aa3384429f80fb2103014046c (diff) | |
download | portato-cc8a41e09db8ad0b0666a30832d4b510b71ab5c4.tar.gz portato-cc8a41e09db8ad0b0666a30832d4b510b71ab5c4.tar.bz2 portato-cc8a41e09db8ad0b0666a30832d4b510b71ab5c4.zip |
added svg-icon
Diffstat (limited to '')
-rw-r--r-- | portato/gui/qt/windows.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/qt/windows.py b/portato/gui/qt/windows.py index d79e1bd..639b42b 100644 --- a/portato/gui/qt/windows.py +++ b/portato/gui/qt/windows.py @@ -725,7 +725,7 @@ class MainWindow (Window): def build_systray (self): if self.cfg.get_boolean("systray_opt", self.cfg.const["gui_sec"]): - self.systray = Qt.QSystemTrayIcon(Qt.QIcon(APP_ICON), self) + self.systray = Qt.QSystemTrayIcon(Qt.QIcon(APP_ICON_PNG), self) # use this until Qt supports proper SVG images in the systray self.trayIconMenu = Qt.QMenu(self) self.trayIconMenu.addAction(self.quitAction) self.systray.setContextMenu(self.trayIconMenu) |