- 
    
Bug
 - 
    Resolution: Fixed
 - 
    
P2: Important
 - 
    5.12.4, 5.13.0, 5.15.13
 - 
    None
 - 
    Dell XPS 15 9560, Windows 10
 
Example code:
import QtQuick 2.12 import QtQuick.Controls 2.5 ApplicationWindow { visible: true width: 640 height: 480 Grid { columns: 5 spacing: 10 Repeater { model: 20 Rectangle { x: 100 y: 100 width: 100 height: 100 color: tapHandler.pressed ? "yellow" : (dragHandler.active ? "red" : "green") TapHandler { id: tapHandler } DragHandler { id: dragHandler } } } } }
To reproduce of the error: randomly, tap and drag rectangles with multiple fingers (on the touch screen).
Result: Some TapHandlers stay in pressed state
It happens randomly but occurs quite often. Perhaps this is related to the following warnings: QQuickTapHandler ... pointId ... is missing from current event, but was neither canceled nor released
- relates to
 - 
                    
QTBUG-113005 Tap handlers are broken on Android.
-         
 - Closed
 
 -