Make system tray icon optional

This commit is contained in:
Burak Kaan Köse
2026-04-19 10:47:42 +02:00
parent 9cc6b03f61
commit bfbc3d40b3
4 changed files with 80 additions and 15 deletions
@@ -387,6 +387,12 @@ public class PreferencesService(IConfigurationService configurationService) : Ob
set => SetPropertyAndSave(nameof(IsStoreUpdateNotificationsEnabled), value);
}
public bool IsSystemTrayIconEnabled
{
get => _configurationService.Get(nameof(IsSystemTrayIconEnabled), true);
set => SetPropertyAndSave(nameof(IsSystemTrayIconEnabled), value);
}
public bool IsWinoAccountButtonHidden
{
get => _configurationService.Get(nameof(IsWinoAccountButtonHidden), false);