From 2aff31112eb342cfe64409463360264cf0b0f56c Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Sat, 21 Sep 2024 15:31:34 +0300 Subject: [PATCH] Fix MoveResizeFilter not grabbing tablet tool events Otherwise the decoration event filter can trigger another interactive move/resize, which in its turn will likely trigger an assert. --- src/input.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/input.cpp b/src/input.cpp index ca7e091c19..42eaef9908 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -712,8 +712,7 @@ public: default: break; } - // Let TabletInputFilter receive the event, so the cursor position can be updated. - return false; + return true; } private: