blob: b3057e30ad0bdd5ccd28b21850a2eab01e464df6 [file] [log] [blame]
import QtQuick 2.0
Rectangle {
property bool hasMouse: mouseArea.containsMouse
height: 200
width: 200
MouseArea {
id: mouseArea
hoverEnabled: true
anchors.fill: parent
}
}