summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberts Muktupāvels <alberts.muktupavels@gmail.com>2017-07-02 16:13:19 +0300
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2017-07-02 16:13:19 +0300
commitc55e857351285c5f035e7ddc8539c9028596bfa3 (patch)
treef54f43db7f16984f9781ce22aefa5654505e5a6d
parent1fafd279006ece8cf664fd777143cdfafbefad6d (diff)
downloadmetacity-c55e857351285c5f035e7ddc8539c9028596bfa3.tar.gz
stack: fix copy/paste error
-rw-r--r--src/core/stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stack.c b/src/core/stack.c
index 8baa3856..6e03952f 100644
--- a/src/core/stack.c
+++ b/src/core/stack.c
@@ -1026,7 +1026,7 @@ stack_sync_to_xserver (MetaStack *stack)
meta_topic (META_DEBUG_STACK, "%u:%d - %s ",
w->layer, w->stack_position, w->desc);
- g_array_prepend_val (stacked, w->xwindow);
+ g_array_append_val (stacked, w->xwindow);
if (w->frame)
g_array_append_val (root_children_stacked, w->frame->xwindow);