We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c30aa20 commit a7ffd66Copy full SHA for a7ffd66
1 file changed
src/pages/home.py
@@ -16,7 +16,6 @@
16
from app import App
17
from services.example import ExampleThread
18
from utils.data_saver import config
19
-from utils.system_tray import SystemTray
20
from utils import file_loader
21
22
@@ -161,11 +160,11 @@ def output(text, level):
161
160
def finished():
162
self.runButton.setDisabled(False)
163
App.alert(self, 0)
164
- if (
165
- App.applicationState()
166
- == Qt.ApplicationState.ApplicationInactive
167
- ):
168
- SystemTray().send("Example finished!", "Go back to the app.")
+ # if (
+ # App.applicationState()
+ # == Qt.ApplicationState.ApplicationInactive
+ # ):
+ # SystemTray().send("Example finished!", "Go back to the app.")
169
self.finishSound.play()
170
171
self.worker.finished.connect(finished)
0 commit comments