Fix order of outstanding moves in queue

The last added move should be done last, so we need to append moves
not prepend
This commit is contained in:
Alexander Larsson 2009-02-08 09:00:57 +01:00 committed by Alexander Larsson
parent 5742005aa1
commit fb3032af04

View File

@ -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 */