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:
parent
5742005aa1
commit
fb3032af04
@ -2544,7 +2544,7 @@ append_move_region (GdkWindowObject *impl_window,
|
|||||||
move->dy = dy;
|
move->dy = dy;
|
||||||
|
|
||||||
impl_window->outstanding_moves =
|
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 */
|
/* Moves bits and update area by dx/dy in impl window */
|
||||||
|
Loading…
Reference in New Issue
Block a user