summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@yahoo.com.ar>2013-07-10 15:39:14 -0300
committerIvan Alejandro <ivanalejandro0@yahoo.com.ar>2013-07-10 15:39:14 -0300
commit51fb89bfb5fee46e12558a4449b5ece762d7a59a (patch)
tree6c48391122f8aeb7ec318106aecf046d5785e2c4 /src
parent6425331ad6cb74ac44ed95b98adf4eae0f6e6255 (diff)
Bugfix: wrong systray icon on startup. Close #3147
Diffstat (limited to 'src')
-rw-r--r--src/leap/gui/mainwindow.py2
1 files changed, 1 insertions, 1 deletions
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)