From 8a4f5212db7e7dcf15194d4af32b035f04a8ae9a Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Tue, 25 Jul 2017 01:22:32 +0200 Subject: Fixed TextArea focus highlighting --- framework/qml/TextArea.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { background: Rectangle { color: Kube.Colors.viewBackgroundColor border.width: 1 - border.color: root.focus ? Kube.Colors.highlightColor : Kube.Colors.buttonColor + border.color: root.activeFocus ? Kube.Colors.highlightColor : Kube.Colors.buttonColor } } -- cgit v1.2.3