1
0
Fork 0
forked from wry/wry

wl-seat: remove cursor_moved defer parameter

It's always false.
This commit is contained in:
Julian Orth 2026-03-11 09:49:41 +01:00
parent 150ead2127
commit 284d904eb2
3 changed files with 9 additions and 13 deletions

View file

@ -1974,6 +1974,6 @@ pub async fn handle_position_hint_requests(state: Rc<State>) {
req.new_pos.0 + (current_pos.0 - req.old_pos.0),
req.new_pos.1 + (current_pos.1 - req.old_pos.1),
);
req.seat.motion_event_abs(state.now_usec(), x, y, false);
req.seat.motion_event_abs(state.now_usec(), x, y);
}
}