diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-05-31 10:59:19 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-05-31 10:59:19 +0200 |
commit | 5b541813c5fc8d4e3ef259130eff8f9a03cf790d (patch) | |
tree | 1c038ad7ba7ac001767558e975b073f0320c0ffb /framework/qml/TextField.qml | |
parent | 48eb16af831e34a43b75c6fe8797a80a90499a9a (diff) | |
download | kube-5b541813c5fc8d4e3ef259130eff8f9a03cf790d.tar.gz kube-5b541813c5fc8d4e3ef259130eff8f9a03cf790d.zip |
add focus visualisaion for textarea and textfield
Diffstat (limited to 'framework/qml/TextField.qml')
-rw-r--r-- | framework/qml/TextField.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qml/TextField.qml b/framework/qml/TextField.qml index a33ccc3a..2fbee655 100644 --- a/framework/qml/TextField.qml +++ b/framework/qml/TextField.qml | |||
@@ -48,6 +48,6 @@ T.TextField { | |||
48 | background: Rectangle { | 48 | background: Rectangle { |
49 | color: Kube.Colors.viewBackgroundColor | 49 | color: Kube.Colors.viewBackgroundColor |
50 | border.width: 1 | 50 | border.width: 1 |
51 | border.color: Kube.Colors.buttonColor | 51 | border.color: root.focus ? Kube.Colors.highlightColor : Kube.Colors.buttonColor |
52 | } | 52 | } |
53 | } | 53 | } |