Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.6.0
-
None
-
Samsung Galaxy Tab Active3 & Samsung Galaxy Tab Active Pro
Both tablets with the s Pen
Android 11 or newer
Description
I used the 'Samsung Galaxy Tab Active3' and 'Samsung Galaxy Tab Active Pro' for testing.
After using the pen to flick an 'Item' in a 'Flickable', the onClicked of the 'MouseArea' does not work anymore. You can therefore no longer click on the 'MouseArea' of the 'Item'. Neither with the pen or with your finger. Before flicking with the pen, the touch input with the pen and the finger worked just fine.
import QtQuick.Window import QtQuick Window { width: 1280 height: 800 title: "Test" visible: true Flickable { anchors.fill: parent contentHeight: parent.height * 2 Rectangle { width: 100 height: 100 color: "blue" MouseArea { anchors.fill: parent onClicked: print("CLICK") } } } }