From fcf076bc89a6e192bb2b545e2e971d46309c81a5 Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Thu, 5 Sep 2024 18:04:55 +0600 Subject: [PATCH] Test fix for freezing while install configuration is proceeded --- source/ubinstall-gtk.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/ubinstall-gtk.c b/source/ubinstall-gtk.c index 7ce380a..243f8d8 100644 --- a/source/ubinstall-gtk.c +++ b/source/ubinstall-gtk.c @@ -1763,6 +1763,7 @@ void on_page_navigation_clicked(GtkWidget *self, main_window *widgets){ gtk_notebook_set_current_page(GTK_NOTEBOOK(widgets->Notebook),YON_PAGE_INSTALLATION); } if (gtk_progress_bar_get_fraction(GTK_PROGRESS_BAR(widgets->InstallationProgress))>0.9){ + gtk_notebook_set_current_page(GTK_NOTEBOOK(widgets->Notebook),YON_PAGE_INSTALLATION); gtk_label_set_text(GTK_LABEL(widgets->InstallationLabel),CONFIGURATION_LABEL); pthread_t tid; pthread_create(&tid,NULL,on_setup_system_configuration,widgets);