summaryrefslogtreecommitdiffstats
path: root/ui/main_window.py
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-05-03 10:53:39 +0200
committerDanilo M. <danix@danix.xyz>2026-05-03 10:53:39 +0200
commit7ca865ee29ca73373349e3a82f783877e4d51ae8 (patch)
treea449b840bed27a071e1003b75cb070b92b976f05 /ui/main_window.py
parent1f7edea0ec0be3ec0e464c2829e4aec0886e28d3 (diff)
downloadpublisher-7ca865ee29ca73373349e3a82f783877e4d51ae8.tar.gz
publisher-7ca865ee29ca73373349e3a82f783877e4d51ae8.zip
fix: stop double stopped emit, restore race, worker leak, encapsulation, git view init
Diffstat (limited to 'ui/main_window.py')
-rw-r--r--ui/main_window.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/main_window.py b/ui/main_window.py
index 4366da6..cc3326f 100644
--- a/ui/main_window.py
+++ b/ui/main_window.py
@@ -267,5 +267,5 @@ class MainWindow(QMainWindow):
self._refresh_articles()
def closeEvent(self, event):
- self._hugo_panel._worker.stop()
+ self._hugo_panel.stop_server()
super().closeEvent(event)