aboutsummaryrefslogtreecommitdiffstats
path: root/DemoApplication/CNButton.qml
diff options
context:
space:
mode:
Diffstat (limited to 'DemoApplication/CNButton.qml')
-rw-r--r--DemoApplication/CNButton.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/DemoApplication/CNButton.qml b/DemoApplication/CNButton.qml
deleted file mode 100644
index b4b28bf..0000000
--- a/DemoApplication/CNButton.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 2.0
-import QtQuick.Controls 2.2
-import CursorNavigation 1.0
-
-Button {
- id: button
- CursorNavigation.acceptsCursor: true
- property bool hasCursor: CursorNavigation.hasCursor
-
- Rectangle {
- border.width: 2
- border.color: "red"
- anchors.fill: parent
- visible: button.hasCursor
- color: "transparent"
- }
-
-}