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 committed by Johan Malm
parent 163f11595f
commit f8a7d18cf0
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;
};