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



commit b2e98c44ec3f7b7b87a6c277336e43a0e3f4b3ff
Author: Michael Natterer <mitch gimp org>
Date:   Fri Oct 30 10:47:47 2009 +0100

    Don't filter out non-existing folders in the path editor
    
    So the user actually has a chance to fix misconfigured paths.

 libgimpwidgets/gimppatheditor.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/libgimpwidgets/gimppatheditor.c b/libgimpwidgets/gimppatheditor.c
index 54e5e8c..611fb4c 100644
--- a/libgimpwidgets/gimppatheditor.c
+++ b/libgimpwidgets/gimppatheditor.c
@@ -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);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]