From 5dcc2abe83a8650733e693a57838cb92c0559a95 Mon Sep 17 00:00:00 2001 From: Ivan Yarcev Date: Tue, 16 Jul 2024 16:50:44 +0600 Subject: [PATCH] Removed text from second progress bar after installation completion --- source/ubinstall-gtk.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/ubinstall-gtk.c b/source/ubinstall-gtk.c index e41cb78..9d056e3 100644 --- a/source/ubinstall-gtk.c +++ b/source/ubinstall-gtk.c @@ -395,7 +395,10 @@ gboolean yon_installation_progress_update(void *data){ if (main_config.install_thread){ return 1; - } else return 0; + } else { + gtk_label_set_text(GTK_LABEL(widgets->PackageInstallationLabel),""); + return 0; + } } void on_page_changed(GtkWidget *,GtkWidget *,int page, main_window *widgets);