summaryrefslogtreecommitdiffstats
path: root/framework/qml/ListDelegate.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-04 10:05:17 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-04 10:05:17 +0200
commit46b1a246642a0aafbf8032f0bbf7a515daeba103 (patch)
treed3cd3a4d7a0be0be84675a40c24c5d3729fe4db8 /framework/qml/ListDelegate.qml
parenta69789502feb0235bddad0cf3cb9ed9ca7554632 (diff)
downloadkube-46b1a246642a0aafbf8032f0bbf7a515daeba103.tar.gz
kube-46b1a246642a0aafbf8032f0bbf7a515daeba103.zip
Control disabledTextColor from the delegate as well
Diffstat (limited to 'framework/qml/ListDelegate.qml')
-rw-r--r--framework/qml/ListDelegate.qml1
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/qml/ListDelegate.qml b/framework/qml/ListDelegate.qml
index 6d6a5d08..196148cb 100644
--- a/framework/qml/ListDelegate.qml
+++ b/framework/qml/ListDelegate.qml
@@ -27,6 +27,7 @@ T.ItemDelegate {
27 property alias color: background.color 27 property alias color: background.color
28 property alias border: background.border 28 property alias border: background.border
29 property color textColor: highlighted ? Kube.Colors.highlightedTextColor : Kube.Colors.textColor 29 property color textColor: highlighted ? Kube.Colors.highlightedTextColor : Kube.Colors.textColor
30 property color disabledTextColor: highlighted ? Kube.Colors.highlightedTextColor : Kube.Colors.disabledTextColor
30 31
31 height: Kube.Units.gridUnit * 3 32 height: Kube.Units.gridUnit * 3
32 width: root.ListView.view.width 33 width: root.ListView.view.width