]> spindle.queued.net Git - midori/commitdiff
Move portable setup code path down
authorPaweł Forysiuk <tuxator@o2.pl>
Mon, 27 Aug 2012 21:36:44 +0000 (23:36 +0200)
committerChristian Dywan <christian@twotoasts.de>
Mon, 27 Aug 2012 21:36:44 +0000 (23:36 +0200)
midori/main.c

index 2e4ef811a23b7bd9a175e30d6391b846cac62bf5..e87ab9210243bfc95eb8be2d236eb33a23269796 100644 (file)
@@ -2216,12 +2216,6 @@ main (int    argc,
         }
         else if (webapp)
             midori_paths_init (MIDORI_RUNTIME_MODE_APP, config ? config : "app://");
-        else if (portable)
-        {
-            g_object_set (gtk_settings_get_default (),
-                "gtk-recent-files-max-age", 0, NULL);
-            midori_paths_init (MIDORI_RUNTIME_MODE_PORTABLE, "portable://");
-        }
 
         midori_load_soup_session (settings);
         if (block_uris)
@@ -2334,8 +2328,16 @@ main (int    argc,
     if (inactivity_reset > 0)
         g_error ("--inactivity-reset is currently only supported with --app.");
 
-    midori_paths_init (MIDORI_RUNTIME_MODE_NORMAL, config);
-        app = midori_app_new ();
+    if (portable)
+    {
+        g_object_set (gtk_settings_get_default (),
+            "gtk-recent-files-max-age", 0, NULL);
+        midori_paths_init (MIDORI_RUNTIME_MODE_PORTABLE, "portable://");
+    }
+    else
+        midori_paths_init (MIDORI_RUNTIME_MODE_NORMAL, config);
+
+    app = midori_app_new ();
     katze_assign (config, g_strdup (midori_paths_get_config_dir ()));
     midori_startup_timer ("App created: \t%f");