diff options
author | Ivan Alejandro <ivanalejandro0@yahoo.com.ar> | 2013-07-10 15:39:14 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@yahoo.com.ar> | 2013-07-10 15:39:14 -0300 |
commit | 51fb89bfb5fee46e12558a4449b5ece762d7a59a (patch) | |
tree | 6c48391122f8aeb7ec318106aecf046d5785e2c4 | |
parent | 6425331ad6cb74ac44ed95b98adf4eae0f6e6255 (diff) |
Bugfix: wrong systray icon on startup. Close #3147
-rw-r--r-- | changes/bug_3147-wrong-systray-icon-on-startup | 1 | ||||
-rw-r--r-- | src/leap/gui/mainwindow.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/changes/bug_3147-wrong-systray-icon-on-startup b/changes/bug_3147-wrong-systray-icon-on-startup new file mode 100644 index 00000000..8f9d6f26 --- /dev/null +++ b/changes/bug_3147-wrong-systray-icon-on-startup @@ -0,0 +1 @@ + o Bugfix: wrong systray icon on startup. Closes #3147. diff --git a/src/leap/gui/mainwindow.py b/src/leap/gui/mainwindow.py index 8283e72f..e8f91700 100644 --- a/src/leap/gui/mainwindow.py +++ b/src/leap/gui/mainwindow.py @@ -545,7 +545,7 @@ class MainWindow(QtGui.QMainWindow): systrayMenu.addAction(self.ui.action_quit) self._systray = QtGui.QSystemTrayIcon(self) self._systray.setContextMenu(systrayMenu) - self._systray.setIcon(self._status_panel.ERROR_ICON) + self._systray.setIcon(self._status_panel.ERROR_ICON_TRAY) self._systray.setVisible(True) self._systray.activated.connect(self._tray_activated) |