Browse Source

Fix systray quit action not working properly

tags/v0.9.0
falkTX 7 years ago
parent
commit
9bf9965d20
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      src/systray.py

+ 3
- 0
src/systray.py View File

@@ -642,6 +642,9 @@ class GlobalSysTray(object):
self._parent.hide() self._parent.hide()
self._parent.close() self._parent.close()


if self._app:
self._app.quit()

def __raiseWindow(self): def __raiseWindow(self):
self._parent.activateWindow() self._parent.activateWindow()
self._parent.raise_() self._parent.raise_()


Loading…
Cancel
Save