Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.10
-
None
Description
Consider the following code
import QtQuick 2.15 ListView { model: 10 delegate: Text { text: "This is a text" TapHandler { gesturePolicy: TapHandler.WithinBounds // Remove this to make it work onTapped: console.warn("tapped") } } }
When clicking on the text the message isn't printed. Only when removing the gesturePolicy it works.
This works as expected with Qt 5.15