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

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