From e6c8a20fc4bb1ef21f18769d7e5e2266daba31ce Mon Sep 17 00:00:00 2001 From: Ivan Dmitrievich Yartsev Date: Mon, 19 Jan 2026 17:45:53 +0000 Subject: [PATCH] Fixed exiting application after installation success --- source/ubinstall-gtk.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/ubinstall-gtk.c b/source/ubinstall-gtk.c index 4da367d..3b05b14 100644 --- a/source/ubinstall-gtk.c +++ b/source/ubinstall-gtk.c @@ -392,6 +392,9 @@ gboolean on_yon_exit(GtkWidget *,GdkEvent*, main_window *widgets){ gtk_main_quit(); return 1; } + } else { + on_exit_accepted(widgets); + gtk_main_quit(); } }