From f64962ace8ac2001b622af9571e9147813a6b3b9 Mon Sep 17 00:00:00 2001 From: Markus Ongyerth Date: Mon, 23 Jul 2018 10:08:43 +0200 Subject: tablet-v2 tool: Implement implicit grab Implement the tablet-v2 tablet tool's implicit grab semantics for buttons and tip. This avoids losing focus (to other [sub]surfaces) when a button is held, or the tip is down. This should help when the device is used close to a surface's border and would otherwise have to be very precise. --- rootston/seat.c | 1 + 1 file changed, 1 insertion(+) (limited to 'rootston') diff --git a/rootston/seat.c b/rootston/seat.c index 343720ae..f308da52 100644 --- a/rootston/seat.c +++ b/rootston/seat.c @@ -209,6 +209,7 @@ static void handle_tool_tip(struct wl_listener *listener, void *data) { if (event->state == WLR_TABLET_TOOL_TIP_DOWN) { wlr_tablet_v2_tablet_tool_notify_down(roots_tool->tablet_v2_tool); + wlr_tablet_tool_v2_start_implicit_grab(roots_tool->tablet_v2_tool); } else { wlr_tablet_v2_tablet_tool_notify_up(roots_tool->tablet_v2_tool); } -- cgit v1.2.3