Take into account JSON/ non-JSON column defaults

This commit is contained in:
Paweł Forysiuk 2011-03-23 02:22:42 +01:00 committed by Christian Dywan
parent c1f9d6f796
commit d4cc81a6c2

View 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);