aboutsummaryrefslogtreecommitdiffstats
path: root/DemoApplication/controls/CNCursorIndicator.qml
blob: 66fde205c272b7623c43fd580265086c6817ac97 (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.9
import CursorNavigation 1.0

Rectangle {
    property Item cursorItem
    border.width: 2
    border.color: "deeppink"
    anchors.fill: parent
    visible: cursorItem.CursorNavigation.hasCursor
    color: "transparent"
}