bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=fe50e1edf0cadc608ebd23284c6aff2a95948de6
commit fe50e1edf0cadc608ebd23284c6aff2a95948de6 Author: Marcel Hollerbach <[email protected]> Date: Sun Feb 26 22:48:32 2017 +0100 tiling: do not pass parent as relative otherwise the client does not get into the list of parent --- src/modules/tiling/window_tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/tiling/window_tree.c b/src/modules/tiling/window_tree.c index 0b8713e..94b11d7a 100644 --- a/src/modules/tiling/window_tree.c +++ b/src/modules/tiling/window_tree.c @@ -124,7 +124,7 @@ tiling_window_tree_add(Window_Tree *root, Window_Tree *parent, { if (parent->children) { - _tiling_window_tree_parent_add(parent, new_node, parent, EINA_TRUE); + _tiling_window_tree_parent_add(parent, new_node, NULL, EINA_TRUE); } else { --
