diff options
| author | Danilo M. <danix@danix.xyz> | 2026-05-03 10:53:39 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-05-03 10:53:39 +0200 |
| commit | 7ca865ee29ca73373349e3a82f783877e4d51ae8 (patch) | |
| tree | a449b840bed27a071e1003b75cb070b92b976f05 /ui/main_window.py | |
| parent | 1f7edea0ec0be3ec0e464c2829e4aec0886e28d3 (diff) | |
| download | publisher-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.py | 2 |
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) |
