From a1ee00147b23be9d12438a21cb976fc50a912981 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sat, 13 Mar 2021 13:54:27 +0100 Subject: [PATCH] Remove underline from link in replies Fix #306 --- imports/NeoChat/Component/Timeline/ReplyComponent.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imports/NeoChat/Component/Timeline/ReplyComponent.qml b/imports/NeoChat/Component/Timeline/ReplyComponent.qml index bafdabe7c..143a9c776 100644 --- a/imports/NeoChat/Component/Timeline/ReplyComponent.qml +++ b/imports/NeoChat/Component/Timeline/ReplyComponent.qml @@ -49,7 +49,7 @@ QQC2.AbstractButton { TextDelegate { Layout.fillWidth: true Layout.leftMargin: 0 - text: replyVisible ? ("" + reply.display) : "" + text: replyVisible ? ("" + reply.display) : "" textFormat: Text.RichText wrapMode: Text.WordWrap }