Details
-
Bug
-
Resolution: Duplicate
-
P1: Critical
-
5.9.4
-
None
-
Using the Qt 5.9.4 snapshot from 2018-01-12.
Tested under Windows 8.1 (mingw32) and Linux Desktop (GCC 64bit).
Description
When migrating our QQuickWidget based application from to 5.9.4, our QML MouseArea instances stopped working!
How to reproduce:
- Open "Qt Quick Widgets Example"
- Add the following lines to rotatingsquare.qml
MouseArea {
id: mouse
enabled: true
anchors.fill: parent
onClicked: console.log('clicked')
onPressed: console.log('pressed')
onReleased: console.log('released')
} - Run the application and click on the red rectangle.
Problem:
No mouse events are detected.
The events works as expected using Qt 5.9.3.
Attachments
Issue Links
- duplicates
-
QTBUG-65800 QQuickWidget doesn't receive mouse events when not at topleft corner of window
- Closed