From 0c7d97853e3904e4e2015ab7fb78da79ead8a8e5 Mon Sep 17 00:00:00 2001 From: Xaver Hugl Date: Thu, 21 Oct 2021 09:46:34 +0200 Subject: [PATCH] input: fix crash on touch quicktile If the filter filters out touchDown it also has to always filter out the matching touchUp --- src/input.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/input.cpp b/src/input.cpp index 7b2c3a8b3e..98d9b62cae 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -1229,6 +1229,7 @@ public: m_lastGlobalTouchPos = QPointF(); m_lastLocalTouchPos = QPointF(); input()->touch()->setDecorationPressId(-1); + return true; } return false; }