diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-03-12 10:08:58 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-03-12 10:08:58 -0300 |
commit | 295b7ed9982094b6a4aa1951561e34bfb16e16c1 (patch) | |
tree | 2f0b3a97294c6a749665dcd83c8677c7e22e0f1b /src/leap/gui/mainwindow.py | |
parent | 2da60cd0f78378fdcb8f6364a798720281b34b4d (diff) |
Gray out the systray icon after logging out
Diffstat (limited to 'src/leap/gui/mainwindow.py')
-rw-r--r-- | src/leap/gui/mainwindow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/gui/mainwindow.py b/src/leap/gui/mainwindow.py index aa9b4ffd..7209861f 100644 --- a/src/leap/gui/mainwindow.py +++ b/src/leap/gui/mainwindow.py @@ -719,7 +719,7 @@ class MainWindow(QtGui.QMainWindow): Switches the stackedWidget back to the login stage after logging out """ - self._vpn_systray.setIcon(self.LOGGED_OUT_ICON) + self._systray.setIcon(self.LOGGED_OUT_ICON) self.ui.action_sign_out.setEnabled(False) self.ui.stackedWidget.setCurrentIndex(self.LOGIN_INDEX) self.ui.lnPassword.setText("") |