Tiling2: Fixed a bug in the tree walker.

This commit is contained in:
Tom Hacohen 2014-01-17 13:48:59 +00:00
parent d03fb0a0f8
commit 6fb54d58ac
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ tiling_window_tree_walk(Window_Tree *root, void (*func)(void *))
EINA_INLIST_FOREACH_SAFE(root->children, itr_safe, itr)
{
tiling_window_tree_free(itr);
tiling_window_tree_walk(itr, func);
}
func(root);
}