Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.2.1
-
None
-
Windows 11 with Qt 6.2.1 on a Lenovo Yoga 920 touchscreen.
(On Linux Wayland Qt 6.2.1 the code above works fine).
Description
I've tested this on Windows 11 with Qt 6.2.1. When PinchHandler is used the scale (and activeScale) property is incorrectly reported.
For example with the code below:
import QtQuick import QtQuick.Controls ApplicationWindow { id: root visible: true width: 640 height: 480 title: qsTr("Image Zoom Example") Image { source: "test.jpg" PinchHandler{ minimumRotation: 0 maximumRotation: 0 minimumPointCount: 2 maximumPointCount: 2 } } }
when the user pinches on the screen, the image isn't scaled smoothly but there are intermittent jumps that causes "flashing" because the scale value of the pinch handler jumps around during the pinch events.
Attachments
Issue Links
- relates to
-
QTBUG-126380 Usage of PinchHandler/PinchArea + DragHandler Results in Image/Object Jumps
- Reported