summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-25 01:22:32 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-07-25 01:22:32 +0200
commit8a4f5212db7e7dcf15194d4af32b035f04a8ae9a (patch)
tree2da51098487c0463dc7f18ecde85e40b68ebe022
parent6e935db7bfe6a15c146671661aebf43b4e42e923 (diff)
downloadkube-8a4f5212db7e7dcf15194d4af32b035f04a8ae9a.tar.gz
kube-8a4f5212db7e7dcf15194d4af32b035f04a8ae9a.zip
Fixed TextArea focus highlighting
-rw-r--r--framework/qml/TextArea.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qml/TextArea.qml b/framework/qml/TextArea.qml
index c5e202f3..1f968560 100644
--- a/framework/qml/TextArea.qml
+++ b/framework/qml/TextArea.qml
@@ -34,6 +34,6 @@ T.TextArea {
34 background: Rectangle { 34 background: Rectangle {
35 color: Kube.Colors.viewBackgroundColor 35 color: Kube.Colors.viewBackgroundColor
36 border.width: 1 36 border.width: 1
37 border.color: root.focus ? Kube.Colors.highlightColor : Kube.Colors.buttonColor 37 border.color: root.activeFocus ? Kube.Colors.highlightColor : Kube.Colors.buttonColor
38 } 38 }
39} 39}