Fix systray quit action not working properly

This commit is contained in:
falkTX 2018-03-19 09:15:55 +01:00
parent 49c567c43e
commit 9bf9965d20
1 changed files with 3 additions and 0 deletions

View File

@ -642,6 +642,9 @@ class GlobalSysTray(object):
self._parent.hide()
self._parent.close()
if self._app:
self._app.quit()
def __raiseWindow(self):
self._parent.activateWindow()
self._parent.raise_()