diff options
-rw-r--r-- | xombrero.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xombrero.c b/xombrero.c index 3a320b3..7f64aa5 100644 --- a/xombrero.c +++ b/xombrero.c @@ -7692,9 +7692,6 @@ main(int argc, char **argv) start_argv = (char * const *)argv; - if (os_init) - os_init(); - /* prepare gtk */ #ifdef USE_THREADS #if !defined __MINGW32__ @@ -7834,6 +7831,10 @@ main(int argc, char **argv) spell_check_languages = g_strdup("en_US"); encoding = g_strdup("UTF-8"); + /* override os specific settings */ + if (os_init) + os_init(); + /* read config file */ if (strlen(conf) == 0) snprintf(conf, sizeof conf, "%s" PS ".%s", |