AccountBar: reduce opacity of collapsed accounts
This commit is contained in:
parent
9157cbd590
commit
82c8496216
|
@ -57,6 +57,13 @@ Rectangle {
|
||||||
// compact: tile.compact
|
// compact: tile.compact
|
||||||
|
|
||||||
radius: theme.mainPane.accountBar.account.avatarRadius
|
radius: theme.mainPane.accountBar.account.avatarRadius
|
||||||
|
|
||||||
|
opacity:
|
||||||
|
tile.collapsed ?
|
||||||
|
theme.mainPane.accountBar.account.collapsedOpacity :
|
||||||
|
1
|
||||||
|
|
||||||
|
Behavior on opacity { HNumberAnimation {} }
|
||||||
}
|
}
|
||||||
|
|
||||||
MessageIndicator {
|
MessageIndicator {
|
||||||
|
@ -94,6 +101,10 @@ Rectangle {
|
||||||
contextMenu: AccountContextMenu { userId: model.id }
|
contextMenu: AccountContextMenu { userId: model.id }
|
||||||
|
|
||||||
onLeftClicked: roomList.goToAccount(model.id)
|
onLeftClicked: roomList.goToAccount(model.id)
|
||||||
|
|
||||||
|
readonly property bool collapsed:
|
||||||
|
(window.uiState.collapseAccounts[model.id] || false) &&
|
||||||
|
! roomList.filter
|
||||||
}
|
}
|
||||||
|
|
||||||
highlight: Item {
|
highlight: Item {
|
||||||
|
|
|
@ -283,6 +283,7 @@ mainPane:
|
||||||
color background: colors.mediumBackground
|
color background: colors.mediumBackground
|
||||||
|
|
||||||
account:
|
account:
|
||||||
|
real collapsedOpacity: 0.3
|
||||||
color background: "transparent"
|
color background: "transparent"
|
||||||
int avatarRadius: controls.avatar.radius
|
int avatarRadius: controls.avatar.radius
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user