summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-06-05 23:20:23 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-06-08 22:21:29 +0200
commit27070386e7319c30472dffafeae027ecc26f41d8 (patch)
tree668f159b727f2624c61d0a655e7df3f615093789
parentAdd ugly borders to tables (diff)
downloadnheko-27070386e7319c30472dffafeae027ecc26f41d8.tar.xz
Fix html in completer
Fixes #578
-rw-r--r--resources/qml/Completer.qml3
1 files changed, 3 insertions, 0 deletions
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 } }