Adjust MouseArea autotest to check mouse events with transformations
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquickmousearea / data / transformedMouseArea.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     width: 400
5     height: 400
6
7     Rectangle {
8         x: 100
9         y: 100
10         width: 200
11         height: 200
12         rotation: 45
13
14         MouseArea {
15             scale: 0.5
16             hoverEnabled: true
17             anchors.fill: parent
18             objectName: "mouseArea"
19         }
20     }
21 }