From 37ba4f0bb8d9d6c0d4904fd63dc3956f7b99e35d Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Thu, 1 Apr 2021 10:56:20 +0800 Subject: [PATCH] resizes images --- Mac/Preferences/Accounts/AddAccountsView.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mac/Preferences/Accounts/AddAccountsView.swift b/Mac/Preferences/Accounts/AddAccountsView.swift index 9ed6d8e1b..abf892d7e 100644 --- a/Mac/Preferences/Accounts/AddAccountsView.swift +++ b/Mac/Preferences/Accounts/AddAccountsView.swift @@ -162,7 +162,7 @@ struct AddAccountsView: View { account.image() .resizable() .aspectRatio(contentMode: .fit) - .frame(width: 25, height: 25, alignment: .center) + .frame(width: 20, height: 20, alignment: .center) .padding(.leading, 4) Text(account.localizedAccountName()) } @@ -194,7 +194,7 @@ struct AddAccountsView: View { account.image() .resizable() .aspectRatio(contentMode: .fit) - .frame(width: 25, height: 25, alignment: .center) + .frame(width: 20, height: 20, alignment: .center) .padding(.leading, 4) Text(account.localizedAccountName()) @@ -230,7 +230,7 @@ struct AddAccountsView: View { account.image() .resizable() .aspectRatio(contentMode: .fit) - .frame(width: 25, height: 25, alignment: .center) + .frame(width: 20, height: 20, alignment: .center) .padding(.leading, 4) Text(account.localizedAccountName()) } @@ -264,7 +264,7 @@ struct AddAccountsView: View { account.image() .resizable() .aspectRatio(contentMode: .fit) - .frame(width: 25, height: 25, alignment: .center) + .frame(width: 20, height: 20, alignment: .center) .padding(.leading, 4) Text(account.localizedAccountName())