[mutter] META_DEBUG_STACK: Fix message about the dumped window order



commit d7f544f42e8af62c89c1057f37ea196b07a0b98e
Author: Owen W. Taylor <otaylor fishsoup net>
Date:   Mon Oct 12 07:55:48 2015 -0400

    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 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/core/stack.c b/src/core/stack.c
index 90655ab..a3879f7 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)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]