From bc468f1e07ddda6eec3adc93db6b3451da916d6b Mon Sep 17 00:00:00 2001 From: Simon Redman Date: Sun, 21 Jul 2019 16:42:16 +0200 Subject: [PATCH] Use proper theme setting for text colour --- smsapp/qml/ChatMessage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smsapp/qml/ChatMessage.qml b/smsapp/qml/ChatMessage.qml index ed724e6f1..8da2c7ac5 100644 --- a/smsapp/qml/ChatMessage.qml +++ b/smsapp/qml/ChatMessage.qml @@ -97,7 +97,7 @@ RowLayout { text: messageBody textFormat: Text.PlainText wrapMode: Text.Wrap - color: sentByMe ? Kirigami.Theme.buttonTextColor : Kirigami.Theme.complementaryTextColor + color: sentByMe ? Kirigami.Theme.viewTextColor : Kirigami.Theme.complementaryTextColor Layout.maximumWidth: root.width - Kirigami.Units.gridUnit * 6 }