mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
tablet: pass motion events to implicitly grabbed surface
Refs swaywm/sway#5302.
This commit is contained in:
parent
42e485dcc3
commit
74c0d03f00
1 changed files with 1 additions and 13 deletions
|
@ -792,18 +792,6 @@ static void implicit_tool_up(struct wlr_tablet_tool_v2_grab *grab) {
|
||||||
check_and_release_implicit_grab(grab);
|
check_and_release_implicit_grab(grab);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Only send the motion event, when we are over the surface for now */
|
|
||||||
static void implicit_tool_motion(
|
|
||||||
struct wlr_tablet_tool_v2_grab *grab, double x, double y) {
|
|
||||||
struct implicit_grab_state *state = grab->data;
|
|
||||||
if (state->focused != state->original) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
wlr_send_tablet_v2_tablet_tool_motion(grab->tool, x, y);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static void implicit_tool_button(
|
static void implicit_tool_button(
|
||||||
struct wlr_tablet_tool_v2_grab *grab, uint32_t button,
|
struct wlr_tablet_tool_v2_grab *grab, uint32_t button,
|
||||||
enum zwp_tablet_pad_v2_button_state state) {
|
enum zwp_tablet_pad_v2_button_state state) {
|
||||||
|
@ -822,7 +810,7 @@ static const struct wlr_tablet_tool_v2_grab_interface
|
||||||
.proximity_in = implicit_tool_proximity_in,
|
.proximity_in = implicit_tool_proximity_in,
|
||||||
.down = implicit_tool_down,
|
.down = implicit_tool_down,
|
||||||
.up = implicit_tool_up,
|
.up = implicit_tool_up,
|
||||||
.motion = implicit_tool_motion,
|
.motion = default_tool_motion,
|
||||||
.pressure = default_tool_pressure,
|
.pressure = default_tool_pressure,
|
||||||
.distance = default_tool_distance,
|
.distance = default_tool_distance,
|
||||||
.tilt = default_tool_tilt,
|
.tilt = default_tool_tilt,
|
||||||
|
|
Loading…
Reference in a new issue