From: Claudio Cambra Date: Mon, 15 Jan 2024 09:15:11 +0000 (+0800) Subject: Adjust alignment and sizing of file provider sync status icon X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~7^2~140^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1f70c85e224d1eb27ad3a0724ac3a114bc6b123b;p=nextcloud-desktop.git Adjust alignment and sizing of file provider sync status icon Signed-off-by: Claudio Cambra --- diff --git a/src/gui/macOS/ui/FileProviderSyncStatus.qml b/src/gui/macOS/ui/FileProviderSyncStatus.qml index 8a898d30c..7f1c53249 100644 --- a/src/gui/macOS/ui/FileProviderSyncStatus.qml +++ b/src/gui/macOS/ui/FileProviderSyncStatus.qml @@ -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 }