From 93da8ca8b6ad9407e4f07dee44d3c2813806f28f Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Thu, 10 Nov 2016 23:57:28 +0100 Subject: [PATCH] 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 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/app.c b/app/app.c index cec51e0c45..3573d4e2ac 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 */