From 9b41f754383c13db6ad25f82f2400e80b2cacd3d Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Tue, 16 Jul 2024 15:42:04 +0600 Subject: [PATCH] Fixed invisible window --- source/ubinstall-gtk.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/ubinstall-gtk.c b/source/ubinstall-gtk.c index e7caad8..497fc01 100644 --- a/source/ubinstall-gtk.c +++ b/source/ubinstall-gtk.c @@ -531,6 +531,7 @@ log_window *yon_log_window_new(){ window->LogLabel = yon_gtk_builder_get_widget(builder,"LogLabel"); window->StatusBox = yon_gtk_builder_get_widget(builder,"StatusBox"); g_signal_connect(G_OBJECT(window->Window),"destroy",G_CALLBACK(on_log_closed),window); + gtk_widget_show(window->Window); return window; }