[gimp] app: initialize GEGL after showing the splash



commit 93da8ca8b6ad9407e4f07dee44d3c2813806f28f
Author: Michael Natterer <mitch gimp org>
Date:   Thu Nov 10 23:57:28 2016 +0100

    app: initialize GEGL after showing the splash
    
    It will soon become more expensive, so the splash should be
    visible already.

 app/app.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/app/app.c b/app/app.c
index cec51e0..3573d4e 100644
--- a/app/app.c
+++ b/app/app.c
@@ -238,9 +238,6 @@ app_run (const gchar         *full_prog_name,
   /*  change the locale if a language if specified  */
   language_init (gimp->config->language);
 
-  /*  initialize lowlevel stuff  */
-  gimp_gegl_init (gimp);
-
   /*  Connect our restore_after callback before gui_init() connects
    *  theirs, so ours runs first and can grab the initial monitor
    *  before the GUI's restore_after callback resets it.
@@ -257,6 +254,9 @@ app_run (const gchar         *full_prog_name,
   if (! update_status_func)
     update_status_func = app_init_update_noop;
 
+  /*  initialize lowlevel stuff  */
+  gimp_gegl_init (gimp);
+
   /*  Create all members of the global Gimp instance which need an already
    *  parsed gimprc, e.g. the data factories
    */


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