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