diff --git a/src/qml/SpaceDrawer.qml b/src/qml/SpaceDrawer.qml index c656334ce..6a2ea7cf8 100644 --- a/src/qml/SpaceDrawer.qml +++ b/src/qml/SpaceDrawer.qml @@ -154,7 +154,7 @@ QQC2.Control { visible: true Kirigami.Theme.colorSet: Kirigami.Theme.Button Kirigami.Theme.inherit: false - color: root.connection.directChatsHaveHighlightNotifications ? Kirigami.Theme.positiveTextColor : Kirigami.Theme.backgroundColor + color: root.connection.directChatsHaveHighlightNotifications || root.connection.directChatInvites ? Kirigami.Theme.positiveTextColor : Kirigami.Theme.backgroundColor radius: height / 2 } @@ -162,6 +162,13 @@ QQC2.Control { id: directChatNotificationCountTextMetrics text: directChatNotificationCountLabel.text } + + Kirigami.Icon { + anchors.fill: parent + + source: "list-add-symbolic" + visible: root.connection.directChatInvites && root.connection.directChatNotifications === 0 + } } }