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

Rectangle {
    width: 400; height: 400;

    Rectangle {
        width: 100; height: 100;
        MouseArea {
            id: mousetracker; objectName: "mousetracker"
            anchors.fill: parent
            visible: false
            hoverEnabled: true
        }
    }
}