From 507a6db1e1bff51a900b1a054eede3513b75ef34 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Mon, 20 Jan 2014 10:38:22 +0000 Subject: [PATCH] Tiling2: Improve debug output in tree dump. --- 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 6f79c2574..d2c40486b 100644 --- a/src/modules/tiling/window_tree.c +++ b/src/modules/tiling/window_tree.c @@ -542,7 +542,7 @@ tiling_window_tree_dump(Window_Tree *root, int level) else printf("|-"); - printf("%f\n", root->weight); + printf("%f (%p)\n", root->weight, root->client); Window_Tree *itr; EINA_INLIST_FOREACH(root->children, itr)