aboutsummaryrefslogtreecommitdiffstats
path: root/tests/CNRect.qml
blob: 50ae4fb131e0adc2ab4a91f60268fcc7eeb6b7eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0
import CursorNavigation 1.0

//Cursor Navigable rectangle for reusing in tests
//has visual indication of cursor for running tests manually
Rectangle {
    color: CursorNavigation.hasCursor ? "red" : "green"
    width: 20
    height: 20

    CursorNavigation.acceptsCursor: true
}