From f35a4333f9e876932edb94534a9c9c31e4864aa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Kaan=20K=C3=B6se?= Date: Sun, 1 Mar 2026 13:48:40 +0100 Subject: [PATCH] Fix initials showing in the background when the profile picture has transparent background. --- Wino.Mail.WinUI/Controls/ImagePreviewControl.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Wino.Mail.WinUI/Controls/ImagePreviewControl.cs b/Wino.Mail.WinUI/Controls/ImagePreviewControl.cs index 959a6f78..dff30f3f 100644 --- a/Wino.Mail.WinUI/Controls/ImagePreviewControl.cs +++ b/Wino.Mail.WinUI/Controls/ImagePreviewControl.cs @@ -293,6 +293,7 @@ public sealed partial class ImagePreviewControl : PersonPicture return; DisplayName = displayName; + Initials = null; ProfilePicture = null; }).ConfigureAwait(false); } @@ -304,6 +305,7 @@ public sealed partial class ImagePreviewControl : PersonPicture if (!IsActiveRefresh(refreshVersion, cancellationToken)) return; + Initials = string.Empty; ProfilePicture = bitmapImage; }).ConfigureAwait(false); }