From a98782f0b1fcbf5a53f68223eb27d31cc02808d9 Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Thu, 14 Nov 2024 16:21:14 +0600 Subject: [PATCH] Fixed build window doesn't close after build has begin --- source/ubl-settings-kernel.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/ubl-settings-kernel.c b/source/ubl-settings-kernel.c index f8d0321..a67e0cb 100644 --- a/source/ubl-settings-kernel.c +++ b/source/ubl-settings-kernel.c @@ -832,6 +832,7 @@ void on_build_execute(GtkWidget *, dictionary *dict){ char *filename = (char*)gtk_entry_get_text(GTK_ENTRY(window->FilenameEntry)); char *command = build_command(target,filename,debug,drivers); yon_command_execute_async(command,widgets); + gtk_widget_destroy(window->window); } void on_building_clicked(GtkWidget *, main_window *widgets){