Skip to content
Snippets Groups Projects
Verified Commit 27070386 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix html in completer

Fixes #578
parent 1da3f2e1
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment