Skip to content

Commit a7ffd66

Browse files
committed
fix: improve row number tracking
1 parent c30aa20 commit a7ffd66

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/pages/home.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from app import App
1717
from services.example import ExampleThread
1818
from utils.data_saver import config
19-
from utils.system_tray import SystemTray
2019
from utils import file_loader
2120

2221

@@ -161,11 +160,11 @@ def output(text, level):
161160
def finished():
162161
self.runButton.setDisabled(False)
163162
App.alert(self, 0)
164-
if (
165-
App.applicationState()
166-
== Qt.ApplicationState.ApplicationInactive
167-
):
168-
SystemTray().send("Example finished!", "Go back to the app.")
163+
# if (
164+
# App.applicationState()
165+
# == Qt.ApplicationState.ApplicationInactive
166+
# ):
167+
# SystemTray().send("Example finished!", "Go back to the app.")
169168
self.finishSound.play()
170169

171170
self.worker.finished.connect(finished)

0 commit comments

Comments
 (0)