From ae5154fd35bfec8a029f2872695a6c176d083d91 Mon Sep 17 00:00:00 2001 From: Black Hat Date: Sat, 18 May 2019 16:32:36 +0800 Subject: [PATCH] Fix link color in reply delegate. --- imports/Spectral/Component/Timeline/MessageDelegate.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imports/Spectral/Component/Timeline/MessageDelegate.qml b/imports/Spectral/Component/Timeline/MessageDelegate.qml index e48f2c7..8671a61 100644 --- a/imports/Spectral/Component/Timeline/MessageDelegate.qml +++ b/imports/Spectral/Component/Timeline/MessageDelegate.qml @@ -162,7 +162,7 @@ ColumnLayout { Layout.fillWidth: true color: !sentByMe ? MPalette.foreground : "white" - text: "" + (replyDisplay || "") + text: "" + (replyDisplay || "") wrapMode: Label.Wrap textFormat: Label.RichText @@ -191,7 +191,7 @@ ColumnLayout { id: contentLabel - text: "" + display + text: "" + display color: darkBackground ? "white" : MPalette.foreground