Bug 684698 - Preferences-Folders: only 15 folder items accepted

Raise "max_paths" from 16 to 256 in all calls to gimp_path_parse().
This commit is contained in:
Michael Natterer
2012-09-26 23:29:51 +02:00
parent b88f1b04dd
commit 2a30a2bb74
9 changed files with 13 additions and 13 deletions

View File

@ -373,7 +373,7 @@ gimp_path_editor_set_path (GimpPathEditor *editor,
g_free (old_path);
path_list = gimp_path_parse (path, 16, FALSE, NULL);
path_list = gimp_path_parse (path, 256, FALSE, NULL);
gtk_list_store_clear (editor->dir_list);
@ -456,7 +456,7 @@ gimp_path_editor_set_writable_path (GimpPathEditor *editor,
gtk_tree_view_column_set_visible (editor->writable_column, TRUE);
path_list = gimp_path_parse (path, 16, FALSE, NULL);
path_list = gimp_path_parse (path, 256, FALSE, NULL);
model = GTK_TREE_MODEL (editor->dir_list);