Use different badge colors for muted chats
This commit is contained in:
parent
4cf12cfd15
commit
8f345174ab
1 changed files with 2 additions and 1 deletions
|
@ -84,7 +84,7 @@ ListItem {
|
|||
|
||||
Rectangle {
|
||||
id: chatUnreadMessagesCountBackground
|
||||
color: Theme.highlightBackgroundColor
|
||||
color: isMuted ? ((Theme.colorScheme === Theme.DarkOnLight) ? "lightgray" : "dimgray") : Theme.highlightBackgroundColor
|
||||
width: Theme.fontSizeLarge
|
||||
height: Theme.fontSizeLarge
|
||||
anchors.right: parent.right
|
||||
|
@ -100,6 +100,7 @@ ListItem {
|
|||
color: Theme.primaryColor
|
||||
anchors.centerIn: chatUnreadMessagesCountBackground
|
||||
visible: chatListViewItem.unreadCount > 0
|
||||
opacity: isMuted ? Theme.opacityHigh : 1.0
|
||||
text: chatListViewItem.unreadCount > 99 ? "99+" : chatListViewItem.unreadCount
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue