From d7f544f42e8af62c89c1057f37ea196b07a0b98e Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Mon, 12 Oct 2015 07:55:48 -0400 Subject: [PATCH] META_DEBUG_STACK: Fix message about the dumped window order A change in the code made the windows list bottom-to-top instead of top-to-bottom, but the message printed out still said "Top to bottom." --- src/core/stack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/stack.c b/src/core/stack.c index 90655ab85..a3879f760 100644 --- a/src/core/stack.c +++ b/src/core/stack.c @@ -1055,7 +1055,7 @@ stack_sync_to_xserver (MetaStack *stack) all_root_children_stacked = g_array_new (FALSE, FALSE, sizeof (guint64)); x11_hidden_stack_ids = g_array_new (FALSE, FALSE, sizeof (guint64)); - meta_topic (META_DEBUG_STACK, "Top to bottom: "); + meta_topic (META_DEBUG_STACK, "Bottom to top: "); meta_push_no_msg_prefix (); for (tmp = g_list_last(stack->sorted); tmp != NULL; tmp = tmp->prev)