diff options
author | Markus Ongyerth <ongy@ongy.net> | 2018-05-02 09:26:34 +0200 |
---|---|---|
committer | Markus Ongyerth <ongy@ongy.net> | 2018-07-14 09:40:39 +0200 |
commit | 391eef6ea9acfd12856970548cb75dbef83dc702 (patch) | |
tree | 1ea0c582490744f67a8d13bdb27e7e4f966689aa /backend | |
parent | f375246657e23926d98cc21ae66a5dae352ea50a (diff) |
Propagate most axis events to clients
Diffstat (limited to 'backend')
-rw-r--r-- | backend/libinput/tablet_tool.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/libinput/tablet_tool.c b/backend/libinput/tablet_tool.c index f69e41f8..36b64836 100644 --- a/backend/libinput/tablet_tool.c +++ b/backend/libinput/tablet_tool.c @@ -270,7 +270,8 @@ void handle_tablet_tool_proximity(struct libinput_event *event, // If the tool is not unique, libinput will not find it again after the // proximity out, so we should destroy it - if (!tool->unique) { + if (!tool->unique && + libinput_event_tablet_tool_get_proximity_state(tevent) == LIBINPUT_TABLET_TOOL_PROXIMITY_STATE_OUT) { // The tool isn't unique, it can't be on multiple tablets assert(tool->pad_refs == 1); struct wlr_libinput_tablet *tablet = |