Fix jitter when quickly resizing windows

Surfaces and views get resized only on commit, therefore we may only
change the position of a window if there are no pending commits.
This commit is contained in:
Vincent Vanlaer 2018-02-07 18:36:08 +01:00
parent b10269e513
commit 099c80e7d6
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ static void move_resize(struct roots_view *view, double x, double y,
constrained_height);
if (serial > 0) {
roots_surface->pending_move_resize_configure_serial = serial;
} else {
} else if(roots_surface->pending_move_resize_configure_serial == 0) {
view->x = x;
view->y = y;
}