From fb3032af04ef1adae0457325c3ad85c6eb24280d Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Sun, 8 Feb 2009 09:00:57 +0100 Subject: [PATCH] Fix order of outstanding moves in queue The last added move should be done last, so we need to append moves not prepend --- gdk/gdkwindow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c index d8ced4d005..56a6035776 100644 --- a/gdk/gdkwindow.c +++ b/gdk/gdkwindow.c @@ -2544,7 +2544,7 @@ append_move_region (GdkWindowObject *impl_window, move->dy = dy; impl_window->outstanding_moves = - g_list_prepend (impl_window->outstanding_moves, move); + g_list_append (impl_window->outstanding_moves, move); } /* Moves bits and update area by dx/dy in impl window */