Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.6.3
-
None
Description
When using both PinchHandler/PinchArea and DragHandler in a Rectangle/Image/etc to enable pinch-zoom and drag functionality, the image or object occasionally jumps unexpectedly. This issue disrupts the smooth interaction expected for image/object manipulation.
Tested and observed the bug occurring in both Android 10 and Android 14 (video included in this report qtBug1.mp4).
Code to reproduce (also happens with Image):
import QtQuick Window { width: 640 height: 480 visible: true Rectangle { id: imagePreview height: parent.height / 2 width: height color: "blue" PinchHandler { minimumRotation: -180 maximumRotation: 180 minimumScale: 0.5 maximumScale: 10 } DragHandler { } } }
Attachments
Issue Links
- relates to
-
QTBUG-67965 PinchHandler: if the first-pressed touchpoint is released first, the target item jumps
- Reported
-
QTBUG-98043 PinchHandler target scale is jumpy on Windows
- Reported