mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-09 23:15:59 +01:00
Merge pull request #1488 from Lahvuun/relative-constraints_fixes
Relative pointer/pointer constraints fixes
This commit is contained in:
commit
62658a318d
1 changed files with 4 additions and 1 deletions
|
@ -271,6 +271,9 @@ void wlr_relative_pointer_manager_v1_send_relative_motion(
|
||||||
(uint32_t)(time_msec >> 32), (uint32_t)time_msec,
|
(uint32_t)(time_msec >> 32), (uint32_t)time_msec,
|
||||||
wl_fixed_from_double(dx), wl_fixed_from_double(dy),
|
wl_fixed_from_double(dx), wl_fixed_from_double(dy),
|
||||||
wl_fixed_from_double(dx_unaccel), wl_fixed_from_double(dy_unaccel));
|
wl_fixed_from_double(dx_unaccel), wl_fixed_from_double(dy_unaccel));
|
||||||
|
uint32_t version = wl_resource_get_version(pointer->resource);
|
||||||
|
if (version >= WL_POINTER_FRAME_SINCE_VERSION) {
|
||||||
wl_pointer_send_frame(pointer->pointer_resource);
|
wl_pointer_send_frame(pointer->pointer_resource);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue