mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Silently ignore touch_{motion,up} for unknown ids
This commit is contained in:
parent
509d38425c
commit
8f5045c871
1 changed files with 0 additions and 2 deletions
|
@ -1113,7 +1113,6 @@ void wlr_seat_touch_notify_up(struct wlr_seat *seat, uint32_t time,
|
||||||
struct wlr_seat_touch_grab *grab = seat->touch_state.grab;
|
struct wlr_seat_touch_grab *grab = seat->touch_state.grab;
|
||||||
struct wlr_touch_point *point = wlr_seat_touch_get_point(seat, touch_id);
|
struct wlr_touch_point *point = wlr_seat_touch_get_point(seat, touch_id);
|
||||||
if (!point) {
|
if (!point) {
|
||||||
wlr_log(L_ERROR, "got touch up for unknown touch point");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1128,7 +1127,6 @@ void wlr_seat_touch_notify_motion(struct wlr_seat *seat, uint32_t time,
|
||||||
struct wlr_seat_touch_grab *grab = seat->touch_state.grab;
|
struct wlr_seat_touch_grab *grab = seat->touch_state.grab;
|
||||||
struct wlr_touch_point *point = wlr_seat_touch_get_point(seat, touch_id);
|
struct wlr_touch_point *point = wlr_seat_touch_get_point(seat, touch_id);
|
||||||
if (!point) {
|
if (!point) {
|
||||||
wlr_log(L_ERROR, "got touch motion for unknown touch point");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue