app: initialize GEGL after showing the splash

It will soon become more expensive, so the splash should be
visible already.
This commit is contained in:
Michael Natterer 2016-11-10 23:57:28 +01:00
parent 7abe5ddb95
commit 93da8ca8b6
1 changed files with 3 additions and 3 deletions

View File

@ -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
*/