From f02b3415a3c03a5d09b3ce15b4bea21f8599f33b Mon Sep 17 00:00:00 2001 From: Dinis Vieira Date: Tue, 14 Nov 2023 23:24:10 +0000 Subject: [PATCH] PM-3350 Removed workaround for iOS issue with Avatar icon as it's now fixed in latest .Net8 release. --- src/Core/Controls/AvatarImageSource.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Core/Controls/AvatarImageSource.cs b/src/Core/Controls/AvatarImageSource.cs index 4b1a8420b..a4ec525eb 100644 --- a/src/Core/Controls/AvatarImageSource.cs +++ b/src/Core/Controls/AvatarImageSource.cs @@ -79,14 +79,6 @@ namespace Bit.App.Controls var textColor = CoreHelpers.TextColorFromBgColor(bgColor); var size = 50; - //Workaround: [MAUI-Migration] There is currently a bug in MAUI where the actual size of the image is used instead of the size it should occupy in the Toolbar. - //This causes some issues with the position of the icon. As a workaround we make the icon smaller until this is fixed. - //Github issues: https://github.com/dotnet/maui/issues/12359 and https://github.com/dotnet/maui/pull/17120 - if (DeviceInfo.Platform == DevicePlatform.iOS) - { - size = 20; - } - using (var bitmap = new SKBitmap(size * 2, size * 2, SKImageInfo.PlatformColorType,