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

@ -227,7 +227,7 @@ impl EiDeviceRequestHandler for EiDevice {
if let Some((x, y)) = self.absolute_motion.take() {
let x = Fixed::from_f32(x);
let y = Fixed::from_f32(y);
seat.motion_event_abs(time, x, y, false);
seat.motion_event_abs(time, x, y);
}
{
let mut need_frame = false;