From 46b1a246642a0aafbf8032f0bbf7a515daeba103 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Wed, 4 Jul 2018 10:05:17 +0200 Subject: Control disabledTextColor from the delegate as well --- views/log/qml/View.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'views/log/qml') diff --git a/views/log/qml/View.qml b/views/log/qml/View.qml index b710267d..560a4cff 100644 --- a/views/log/qml/View.qml +++ b/views/log/qml/View.qml @@ -99,6 +99,7 @@ Controls1.SplitView { } delegate: Kube.ListDelegate { + id: delegateRoot border.color: Kube.Colors.buttonColor border.width: 1 Kube.Label { @@ -126,7 +127,7 @@ Controls1.SplitView { width: parent.width - Kube.Units.largeSpacing * 2 maximumLineCount: 1 elide: Text.ElideRight - color: Kube.Colors.disabledTextColor + color: delegateRoot.disabledTextColor text: model.message } @@ -140,7 +141,7 @@ Controls1.SplitView { } text: Qt.formatDateTime(model.timestamp, " hh:mm:ss dd MMM yyyy") font.italic: true - color: Kube.Colors.disabledTextColor + color: delegateRoot.disabledTextColor font.pointSize: Kube.Units.smallFontSize } } -- cgit v1.2.3