mirror of
https://github.com/brl/mutter.git
synced 2025-02-24 08:54:08 +00:00
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."
This commit is contained in:
parent
1ab8b854df
commit
d7f544f42e
@ -1055,7 +1055,7 @@ stack_sync_to_xserver (MetaStack *stack)
|
|||||||
all_root_children_stacked = g_array_new (FALSE, FALSE, sizeof (guint64));
|
all_root_children_stacked = g_array_new (FALSE, FALSE, sizeof (guint64));
|
||||||
x11_hidden_stack_ids = 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 ();
|
meta_push_no_msg_prefix ();
|
||||||
|
|
||||||
for (tmp = g_list_last(stack->sorted); tmp != NULL; tmp = tmp->prev)
|
for (tmp = g_list_last(stack->sorted); tmp != NULL; tmp = tmp->prev)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user