kugel- commented on this pull request.
> + }
+ case TREE_CASE_PARENT_OF:
+ {
+ /* More complicated logic. This dir should be a parent
+ * of existing, so reparent existing dir. */
+ has_parent = gtk_tree_model_iter_parent(model, &iter,
&data.best_iter);
+ tree_add_new_dir(parent, has_parent ? &iter : NULL,
path);
+ tree_copy_recursive(&data.best_iter, parent);
+ gtk_tree_store_remove(store_openfiles, &data.best_iter);
+ break;
+ }
+ case TREE_CASE_HAVE_SAME_PARENT:
+ {
+ /* Even more complicated logic. Both dirs have same
+ * parent, so create new parent and reparent them */
+ GtkTreeIter parent_buf;
Will rename
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/1813#discussion_r309702835