Add preference to hide title bar Wino account button (#833)

This commit is contained in:
Burak Kaan Köse
2026-03-17 12:00:34 +01:00
committed by GitHub
parent e2b9216f8f
commit ea204fef21
5 changed files with 24 additions and 2 deletions
@@ -313,6 +313,13 @@ public class PreferencesService(IConfigurationService configurationService) : Ob
get => _configurationService.Get(nameof(IsStoreUpdateNotificationsEnabled), true);
set => SetPropertyAndSave(nameof(IsStoreUpdateNotificationsEnabled), value);
}
public bool IsWinoAccountButtonHidden
{
get => _configurationService.Get(nameof(IsWinoAccountButtonHidden), false);
set => SetPropertyAndSave(nameof(IsWinoAccountButtonHidden), value);
}
public WinoApplicationMode DefaultApplicationMode
{
get