Details
-
Bug
-
Resolution: Unresolved
-
Not Evaluated
-
None
-
6.8.1, 6.10
-
None
Description
Consider the following code
import QtQuick 2.12 import QtQuick.Controls 2.5 Item { Popup { visible: true width: 500 height: 500 background: Rectangle { color: "red" TapHandler { onTapped: console.warn("tapped") } } } }
When clicking the red area with the mouse "tapped" is printed as expected. However when tapping it using a touchscreen it doesn't react.
When moving the rectangle from background to a regular child touch works as expected.
Touch works as expected in Qt 5.15