aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickmousearea/data/containsMouse.qml
blob: 6620d7c06288884a780870aee33f967603234e1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick

Rectangle {
    width: 200
    height: 200
    visible: true
    MouseArea {
        id: mouseArea
        objectName: "mouseArea"
        anchors.fill: parent
        hoverEnabled: true
        visible: false
    }
}