From a5f55acf0e6294d43cbdc963f13fc37227663fb5 Mon Sep 17 00:00:00 2001 From: Matthijs Tijink Date: Sun, 21 Jul 2019 11:05:40 +0000 Subject: [PATCH] Don't interpret HTML in SMS messages --- smsapp/qml/ConversationList.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/smsapp/qml/ConversationList.qml b/smsapp/qml/ConversationList.qml index a0b706316..9f0671205 100644 --- a/smsapp/qml/ConversationList.qml +++ b/smsapp/qml/ConversationList.qml @@ -182,12 +182,14 @@ Kirigami.ScrollablePage text: display maximumLineCount: 1 elide: Text.ElideRight + textFormat: Text.PlainText } Label { Layout.fillWidth: true text: toolTip maximumLineCount: 1 elide: Text.ElideRight + textFormat: Text.PlainText } } }