If xdg_toplevel_view_move() is called when a resize is pending
(e.g. after xdg_toplevel_view_resize() but before handle_commit()),
the newer x/y coordinates passed to move() should take precendence
over the older pending_move_resize.x/y coordinates.
This is consistent with the logic used in xwayland.c's move().
{
view->x = x;
view->y = y;
+
+ /* override any previous pending move */
+ view->pending_move_resize.x = x;
+ view->pending_move_resize.y = y;
+
view_moved(view);
}