From ee08b164b3b1da5248faac41523c1133573ffd9d Mon Sep 17 00:00:00 2001 From: Ivan Dmitrievich Yartsev Date: Thu, 16 Apr 2026 14:35:40 +0600 Subject: [PATCH] Test fix for crash --- source/ubinstall-gtk-components.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/ubinstall-gtk-components.c b/source/ubinstall-gtk-components.c index de88cf5..102e230 100644 --- a/source/ubinstall-gtk-components.c +++ b/source/ubinstall-gtk-components.c @@ -549,7 +549,8 @@ void yon_software_init(main_window *widgets){ row->size_raw = size; row->size = size_str; row->widgets=widgets; - g_idle_add((GSourceFunc)yon_software_insert,row); + yon_software_insert(row); + // g_idle_add((GSourceFunc)yon_software_insert,row); while(gtk_events_pending()) gtk_main_iteration(); } g_idle_add((GSourceFunc)yon_spinner_switch_off,widgets->OSSpinner);