summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-11-01 21:44:21 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2023-11-01 21:44:21 +0100
commitbd1cadb6bb88c9161290962699e32d5046d1afe7 (patch)
tree1b639d1a3e25aead4f17d25dbf5d5227457f1e66 /resources
parentPossibly fix pagination in search (diff)
downloadnheko-bd1cadb6bb88c9161290962699e32d5046d1afe7.tar.xz
Spaces are now bold
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/Completer.qml2
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
                         }