diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-07-21 06:19:31 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-07-21 06:19:31 +0200 |
commit | 2853be3b7ff69e39e0b79db4b3ef4eb42b135b34 (patch) | |
tree | 9ddd90b5bccff24ff846bb554a1ff2803aa68c0a /framework/qml/Button.qml | |
parent | cd5fc3ea02bea45dc81dd33d555cf9d1265f9d3a (diff) | |
download | kube-2853be3b7ff69e39e0b79db4b3ef4eb42b135b34.tar.gz kube-2853be3b7ff69e39e0b79db4b3ef4eb42b135b34.zip |
Use activeFocus
Diffstat (limited to 'framework/qml/Button.qml')
-rw-r--r-- | framework/qml/Button.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qml/Button.qml b/framework/qml/Button.qml index 83f02cff..80b7451a 100644 --- a/framework/qml/Button.qml +++ b/framework/qml/Button.qml | |||
@@ -38,7 +38,7 @@ T.Button { | |||
38 | color: Colors.buttonColor | 38 | color: Colors.buttonColor |
39 | 39 | ||
40 | border.width: 2 | 40 | border.width: 2 |
41 | border.color: root.focus && !root.pressed ? Colors.highlightColor : Colors.buttonColor | 41 | border.color: root.activeFocus && !root.pressed ? Colors.highlightColor : Colors.buttonColor |
42 | 42 | ||
43 | Rectangle { | 43 | Rectangle { |
44 | anchors.fill: parent | 44 | anchors.fill: parent |