]> spindle.queued.net Git - midori/commitdiff
Take into account JSON/ non-JSON column defaults
authorPaweł Forysiuk <tuxator@o2.pl>
Wed, 23 Mar 2011 01:22:42 +0000 (02:22 +0100)
committerChristian Dywan <christian@twotoasts.de>
Wed, 23 Mar 2011 01:22:42 +0000 (02:22 +0100)
midori/main.c

index c7789a2417c63273178871b42bb325309a824916..7900d6200bc58b3e2bde13d673c952deac6802b5 100644 (file)
@@ -1594,8 +1594,9 @@ speeddial_new_from_file (const gchar* config,
         }
     }
 
+    /* Without JSON we save 3 columns and 0 rows, columns are initialised as 3 */
     g_key_file_set_integer (key_file, "settings", "columns", columns);
-    g_key_file_set_integer (key_file, "settings", "rows", slot_count / columns);
+    g_key_file_set_integer (key_file, "settings", "rows", slot_count / columns ? 0 : 3);
 
     g_strfreev (parts);
     g_free (json_content);