Improve z-ordering of account avatar elements

Show presence orb in front of unread messages, which are shown in front
of the loading spinner overlays
This commit is contained in:
miruka 2020-07-10 13:42:08 -04:00
parent a7702a5260
commit 8557c79e12
2 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ HAvatar {
anchors.bottomMargin: -diameter / 2 anchors.bottomMargin: -diameter / 2
anchors.rightMargin: -diameter / 2 anchors.rightMargin: -diameter / 2
opacity: theme.controls.presence.opacity opacity: theme.controls.presence.opacity
z: 100 z: 300
property int diameter: property int diameter:
window.settings.compactMode ? window.settings.compactMode ?

View File

@ -35,7 +35,7 @@ HTile {
HLoader { HLoader {
anchors.fill: parent anchors.fill: parent
z: 9998 z: 100
opacity: model.connecting ? 1 : 0 opacity: model.connecting ? 1 : 0
active: opacity > 0 active: opacity > 0
@ -57,7 +57,7 @@ HTile {
id: totalMessageIndicator id: totalMessageIndicator
anchors.right: parent.right anchors.right: parent.right
anchors.bottom: parent.bottom anchors.bottom: parent.bottom
z: 9999 z: 200
indicatorTheme: indicatorTheme:
theme.mainPane.accountBar.account.unreadIndicator theme.mainPane.accountBar.account.unreadIndicator