Don't filter out non-existing folders in the path editor

So the user actually has a chance to fix misconfigured paths.
This commit is contained in:
Michael Natterer
2009-10-30 10:47:47 +01:00
parent cc25adfb63
commit b2e98c44ec

View File

@ -347,7 +347,7 @@ gimp_path_editor_set_path (GimpPathEditor *editor,
g_free (old_path);
path_list = gimp_path_parse (path, 16, TRUE, NULL);
path_list = gimp_path_parse (path, 16, FALSE, NULL);
gtk_list_store_clear (editor->dir_list);
@ -430,7 +430,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, TRUE, NULL);
path_list = gimp_path_parse (path, 16, FALSE, NULL);
model = GTK_TREE_MODEL (editor->dir_list);