summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-05-06 19:30:29 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2023-05-06 19:30:29 +0200
commit7dd333947711b9ebb54460066a25b07d155fa012 (patch)
treee7879c87bad2f2d23349de37a5c2a722b685bf1e /resources/qml
parentAllow picking multiple files to upload (diff)
downloadnheko-7dd333947711b9ebb54460066a25b07d155fa012.tar.xz
Sort rooms in completer by 'activity' and make tombstoned rooms italic
Diffstat (limited to 'resources/qml')
-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 9700f843..cc1047a0 100644 --- a/resources/qml/Completer.qml +++ b/resources/qml/Completer.qml
@@ -292,6 +292,7 @@ Control { text: model.roomName font.pixelSize: popup.avatarHeight * 0.5 color: model.index == popup.currentIndex ? Nheko.colors.highlightedText : Nheko.colors.text + font.italic: model.isTombstoned textFormat: Text.RichText } @@ -320,6 +321,7 @@ Control { Label { text: model.roomName color: model.index == popup.currentIndex ? Nheko.colors.highlightedText : Nheko.colors.text + font.italic: model.isTombstoned textFormat: Text.RichText }