From fb6e2996b64690863d6d0b09e0a679348ee8a56d Mon Sep 17 00:00:00 2001 From: majjo Date: Wed, 29 Apr 2026 19:18:35 +0200 Subject: [PATCH] fix account details title visibility --- Wino.Core.ViewModels/AccountManagementPageViewModelBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wino.Core.ViewModels/AccountManagementPageViewModelBase.cs b/Wino.Core.ViewModels/AccountManagementPageViewModelBase.cs index e30b335c..7c9d2cac 100644 --- a/Wino.Core.ViewModels/AccountManagementPageViewModelBase.cs +++ b/Wino.Core.ViewModels/AccountManagementPageViewModelBase.cs @@ -80,7 +80,7 @@ public abstract partial class AccountManagementPageViewModelBase : CoreBaseViewM OnPropertyChanged(nameof(StartupAccounts)); } - private static string GetAccountDetailsTitle(MailAccount account) + protected static string GetAccountDetailsTitle(MailAccount account) => !string.IsNullOrWhiteSpace(account?.Address) ? string.Format(Translator.SettingsAccountDetails_NavigationTitle, account.Address) : account?.Name ?? Translator.AccountDetailsPage_Title;