aboutsummaryrefslogtreecommitdiff
path: root/qml/ChatlistPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/ChatlistPage.qml')
-rw-r--r--qml/ChatlistPage.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/qml/ChatlistPage.qml b/qml/ChatlistPage.qml
index d7e66ae..713113a 100644
--- a/qml/ChatlistPage.qml
+++ b/qml/ChatlistPage.qml
@@ -63,6 +63,7 @@ Kirigami.ScrollablePage {
"avatarSource": profileImage ? "file:" + profileImage : "",
"chatName": chat.name,
"freshMsgCnt": chatlistPage.context.getFreshMsgCnt(chatId),
+ "isMuted" : chat.muted,
"isContactRequest": chat.isContactRequest,
"visibility": chat.visibility
};
@@ -149,6 +150,8 @@ Kirigami.ScrollablePage {
username: model.username
freshMsgCnt: model.freshMsgCnt
isContactRequest: model.isContactRequest
+ isMuted: model.isMuted
+ visibility: model.visibility
isPinned: model.visibility == 2
width: chatlist.width
onClicked: chatClicked(model.chatId)