Bug 649610 - Gimp does not initialize as long as the splash screen is not mapped

app: don't use gtk_widget_show_now as that blocks until the window maps.
This commit is contained in:
Mikael Magnusson 2011-05-06 23:37:31 +02:00
parent 759fad8189
commit a4cf150191

View file

@ -198,7 +198,7 @@ splash_create (gboolean be_verbose)
gtk_box_pack_end (GTK_BOX (vbox), splash->progress, FALSE, FALSE, 0);
gtk_widget_show (splash->progress);
gtk_widget_show_now (splash->window);
gtk_widget_show (splash->window);
#ifdef STARTUP_TIMER
splash->timer = g_timer_new ();