Merge pull request #612 from VincentVanlaer/fix-move-resize

Fix jitter when quickly resizing windows
master
emersion 7 years ago committed by GitHub
commit e13b13ff1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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;
}

Loading…
Cancel
Save