aboutsummaryrefslogtreecommitdiff
path: root/src/widget/Highlighter.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/widget/Highlighter.qml')
-rw-r--r--src/widget/Highlighter.qml24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/widget/Highlighter.qml b/src/widget/Highlighter.qml
deleted file mode 100644
index 53f308c..0000000
--- a/src/widget/Highlighter.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 2.0
-
-Item {
- function select() { bar.opacity = 1 }
- function deselect() { bar.opacity = 0 }
- function focus() { bar.color = settings.highlighter.focusColor }
- function unfocus() { bar.color = settings.highlighter.defaultColor }
-
- Rectangle {
- id: bar
-
- anchors.fill: parent
-
- opacity: 0
- color: settings.highlighter.defaultColor
-
- Behavior on opacity {
- NumberAnimation {
- duration: 300
- easing.type: Easing.OutCubic
- }
- }
- }
-}