From 27070386e7319c30472dffafeae027ecc26f41d8 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Sat, 5 Jun 2021 23:20:23 +0200 Subject: [PATCH] Fix html in completer Fixes #578 --- resources/qml/Completer.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/qml/Completer.qml b/resources/qml/Completer.qml index 0cdd789d..bbfa7b94 100644 --- a/resources/qml/Completer.qml +++ b/resources/qml/Completer.qml @@ -210,6 +210,7 @@ Popup { text: model.roomName font.pixelSize: popup.avatarHeight * 0.5 color: model.index == popup.currentIndex ? Nheko.colors.highlightedText : Nheko.colors.text + textFormat: Text.RichText } } @@ -236,11 +237,13 @@ Popup { Label { text: model.roomName color: model.index == popup.currentIndex ? Nheko.colors.highlightedText : Nheko.colors.text + textFormat: Text.RichText } Label { text: "(" + model.roomAlias + ")" color: model.index == popup.currentIndex ? Nheko.colors.highlightedText : Nheko.colors.buttonText + textFormat: Text.RichText } }