Merge pull request 'Fixed size of background circle for Unread messages' (#7) from sprainbrains/harbour-fernschreiber:unread_message_background_fix into master
Reviewed-on: #7
This commit is contained in:
commit
1ad324aa23
2 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ ListItem {
|
|||
Rectangle {
|
||||
id: chatUnreadMessagesCountBackground
|
||||
color: isMuted ? ((Theme.colorScheme === Theme.DarkOnLight) ? "lightgray" : "dimgray") : Theme.highlightBackgroundColor
|
||||
width: Theme.fontSizeLarge
|
||||
width: chatUnreadMessagesCount.width + Theme.fontSizeLarge / 2
|
||||
height: Theme.fontSizeLarge
|
||||
anchors.right: parent.right
|
||||
anchors.bottom: parent.bottom
|
||||
|
|
|
@ -1405,7 +1405,7 @@ Page {
|
|||
|
||||
Item {
|
||||
id: chatUnreadMessagesItem
|
||||
width: Theme.fontSizeHuge
|
||||
width: chatUnreadMessagesCount.width + Theme.fontSizeLarge / 2
|
||||
height: Theme.fontSizeHuge
|
||||
anchors.right: parent.right
|
||||
anchors.rightMargin: Theme.paddingMedium
|
||||
|
|
Loading…
Reference in a new issue