input: ignore not supported tablet tools

We currently only support cursor emulation
for absolute motion, thus ignore tools/pens
that use relative motion.

Add a log statement on proximity-in to give
some feedback.
This commit is contained in:
Jens Peters 2024-05-07 19:35:44 +02:00
parent 2093ec9423
commit 5d2a5540c3
No known key found for this signature in database
2 changed files with 32 additions and 1 deletions

View file

@ -13,11 +13,11 @@ struct drawing_tablet {
struct wlr_tablet *tablet;
double x, y;
struct {
struct wl_listener proximity;
struct wl_listener axis;
struct wl_listener tip;
struct wl_listener button;
struct wl_listener destroy;
// no interest in proximity events
} handlers;
};