From 9bf9965d2063d875aa9bd8e289a89c519a0251cf Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 19 Mar 2018 09:15:55 +0100 Subject: [PATCH] Fix systray quit action not working properly --- src/systray.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/systray.py b/src/systray.py index d222ab4..5a3fb59 100755 --- a/src/systray.py +++ b/src/systray.py @@ -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_()