Adjust alignment and sizing of file provider sync status icon

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
Claudio Cambra 2024-01-15 17:15:11 +08:00
parent 918e411b10
commit 1f70c85e22
No known key found for this signature in database
GPG key ID: C839200C384636B0

View file

@ -32,7 +32,7 @@ GridLayout {
NCBusyIndicator {
id: syncIcon
property int size: Style.trayListItemIconSize * 0.6
property int size: Style.trayListItemIconSize * 0.8
Layout.row: 0
Layout.rowSpan: root.syncStatus.syncing ? 2 : 1
@ -41,6 +41,8 @@ GridLayout {
Layout.preferredHeight: size
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
padding: 0
spacing: 0
imageSource: root.syncStatus.icon
running: root.syncStatus.syncing
}