Index: gui/main.c
===================================================================
--- gui/main.c (revision edf72d39720caf76f89be3b4ffe739f1a89caff8)
+++ gui/main.c (revision 31900ca551bcb7feafcc024dba2405b559272501)
@@ -263,4 +263,11 @@
 
   gtk_progress_bar_set_text(GTK_PROGRESS_BAR(g_xrun_progress_bar), status);
+
+  /* workaround a bug in GtkProgressBar. it needs fraction change in order to redraw the changed text
+   * GtkProgressBar tracks the dirty state and it is checked before painting, so sending redraw request
+   * through gtk_widget_queue_draw() will not help because expose handler will ignore the redraw request */
+  gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(g_xrun_progress_bar), 1.0);
+  gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(g_xrun_progress_bar), 0.0);
+
   gtk_label_set_text(GTK_LABEL(g_studio_status_label), name);
 
