From 35804df4dfb66c1f62447c3552a64b2e9288d017 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Fri, 14 Mar 2025 23:36:52 +0900 Subject: [PATCH] fix: move call to other func def --- helpers/ui.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/helpers/ui.py b/helpers/ui.py index 22274fc..6d07f30 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -899,7 +899,7 @@ class OuterWindow(Gtk.Window): def halt_proc_and_quit(self, window, event): self.grid.terminate_treeview_process() - Gtk.main_quit() + save_res_and_quit(self.win) class ScrollableTree(Gtk.ScrolledWindow): @@ -2459,7 +2459,6 @@ class App(Gtk.Application): Gtk.main() def _halt_window_subprocess(self, accel_group, window, code, flag): - save_res_and_quit(self.win) self.win.halt_proc_and_quit(self, None) def save_res_and_quit(window):