diff --git a/src/input.cpp b/src/input.cpp index 56522ba98b..a583afab23 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -1859,6 +1859,9 @@ public: if (!tool) { tool = createTool(tabletToolId); } + if (!tool->isClientSupported()) { + return false; + } tool->sendButton(button, pressed); return true; }