diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-11-01 21:44:21 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-11-01 21:44:21 +0100 |
commit | bd1cadb6bb88c9161290962699e32d5046d1afe7 (patch) | |
tree | 1b639d1a3e25aead4f17d25dbf5d5227457f1e66 /resources | |
parent | Possibly fix pagination in search (diff) | |
download | nheko-bd1cadb6bb88c9161290962699e32d5046d1afe7.tar.xz |
Spaces are now bold
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 } |