Adjust alignment and sizing of file provider sync status icon
authorClaudio Cambra <claudio.cambra@nextcloud.com>
Mon, 15 Jan 2024 09:15:11 +0000 (17:15 +0800)
committerClaudio Cambra <claudio.cambra@nextcloud.com>
Mon, 19 Feb 2024 14:45:23 +0000 (22:45 +0800)
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
src/gui/macOS/ui/FileProviderSyncStatus.qml

index 8a898d30c556b0b01ba42b05e468dddbf93ec263..7f1c53249cbe6bd8cd83e51ea1c6e3055eedd8e8 100644 (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
     }