Add configurable thread item sorting
This commit is contained in:
@@ -117,6 +117,12 @@ public class PreferencesService(IConfigurationService configurationService) : Ob
|
||||
set => SetPropertyAndSave(nameof(IsThreadingEnabled), value);
|
||||
}
|
||||
|
||||
public bool IsNewestThreadMailFirst
|
||||
{
|
||||
get => _configurationService.Get(nameof(IsNewestThreadMailFirst), true);
|
||||
set => SetPropertyAndSave(nameof(IsNewestThreadMailFirst), value);
|
||||
}
|
||||
|
||||
public bool IsMailListActionBarEnabled
|
||||
{
|
||||
get => _configurationService.Get(nameof(IsMailListActionBarEnabled), false);
|
||||
|
||||
Reference in New Issue
Block a user