diff options
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/Completer.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/resources/qml/Completer.qml b/resources/qml/Completer.qml index d8205988..89921ca4 100644 --- a/resources/qml/Completer.qml +++ b/resources/qml/Completer.qml @@ -237,6 +237,7 @@ Control { Label { color: model.index == popup.currentIndex ? palette.highlightedText : palette.text font.italic: model.isTombstoned + font.bold: model.isSpace font.pixelSize: popup.avatarHeight * 0.5 text: model.roomName textFormat: Text.RichText @@ -261,6 +262,7 @@ Control { Label { color: model.index == popup.currentIndex ? palette.highlightedText : palette.text font.italic: model.isTombstoned + font.bold: model.isSpace text: model.roomName textFormat: Text.RichText } |