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:
@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user