- 
    Bug 
- 
    Resolution: Done
- 
    P1: Critical 
- 
    5.12.0 Beta 3
- 
    None
- 
    Dell XPS 15 9560
 Microsoft Windows 10 Pro (Version 10.0.17134 Build 17134)
 
With the following code:
MouseArea {
        id: mouseArea
        property alias color: background.color
        width: 300
        height: 200
        onClicked: console.debug("onClicked", mouseArea)
        onDoubleClicked: console.debug("onDoubleClicked", mouseArea)
        Rectangle {
            id: background
            anchors.fill: parent
            color: "red"
            opacity: 0.7
        }
        Label {
            anchors.centerIn: parent
            text: qsTr("pressed: %1").arg(mouseArea.pressed)
        }
    }
Mouse area goes in pressed state after touch with 2 fingers (For the output below the error occurs at the second touch with 2 fingers).
Then it does not respond to any touches, mouse clicks for some time (multiple touch oder clicks do not change the pressed state).
Output of the example it attached log file:
- is required for
- 
                    QTBUG-71533 Many problems with Input Handlers on the touch screen -         
- Closed
 
-