Added setting to show/hide action bar in mail list

This commit is contained in:
Aleh Khantsevich
2024-08-29 01:13:51 +02:00
parent 552fca8df7
commit 945c747e3e
6 changed files with 35 additions and 5 deletions

View File

@@ -64,6 +64,12 @@ namespace Wino.Core.UWP.Services
set => SetPropertyAndSave(nameof(IsThreadingEnabled), value);
}
public bool IsMailListActionBarEnabled
{
get => _configurationService.Get(nameof(IsMailListActionBarEnabled), false);
set => SetPropertyAndSave(nameof(IsMailListActionBarEnabled), value);
}
public bool IsShowSenderPicturesEnabled
{
get => _configurationService.Get(nameof(IsShowSenderPicturesEnabled), true);