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



commit a4cf150191072bbfd796ec697f2ad83c4ec70c77
Author: Mikael Magnusson <mikachu src gnome org>
Date:   Fri May 6 23:37:31 2011 +0200

    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.

 app/gui/splash.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/app/gui/splash.c b/app/gui/splash.c
index 21e19a0..7e23d18 100644
--- a/app/gui/splash.c
+++ b/app/gui/splash.c
@@ -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 ();



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]