aboutsummaryrefslogtreecommitdiffstats
path: root/DemoApplication/controls/CNToolButton.qml
blob: 65f23383a06771746ec60ae055301681c677ca03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.0
import QtQuick.Controls 2.2
import CursorNavigation 1.0

ToolButton {
    CursorNavigation.acceptsCursor: true
    Rectangle {
        anchors.fill: parent
        color: "transparent"
        border.width: 2
        border.color: "red"
        visible: parent.CursorNavigation.hasCursor
    }
}