files: walk tree in pre order

In post order we seem to have the folders after the files
so we can't correctly set the parent in the tree store.
This commit is contained in:
Ignacio Casal Quinteiro 2012-10-18 12:49:50 +02:00
parent 3a725e641b
commit 78abff4d8c

View file

@ -155,7 +155,7 @@ public class TreeStore : Gtk.TreeStore
}
return 0;
}, Ggit.TreeWalkMode.POST);
}, Ggit.TreeWalkMode.PRE);
} catch (Error e) { }
}
}