diff --git a/imports/Spectral/Component/Timeline/MessageDelegate.qml b/imports/Spectral/Component/Timeline/MessageDelegate.qml index b96749e67..ba932e8ef 100644 --- a/imports/Spectral/Component/Timeline/MessageDelegate.qml +++ b/imports/Spectral/Component/Timeline/MessageDelegate.qml @@ -158,14 +158,19 @@ ColumnLayout { } } - Label { + TextEdit { Layout.fillWidth: true color: !sentByMe ? MPalette.foreground : "white" text: "" + (replyVisible ? reply.display : "") + font.family: window.font.family + selectByMouse: true + readOnly: true wrapMode: Label.Wrap - textFormat: Label.RichText + selectedTextColor: darkBackground ? "white" : MPalette.accent + selectionColor: darkBackground ? MPalette.accent : "white" + textFormat: Text.RichText } }