Remove this

This commit is contained in:
yell0wsuit 2024-04-07 00:00:16 +07:00
commit b240865dac
No known key found for this signature in database
GPG key ID: 5B4F198A9800F6F4
2 changed files with 4 additions and 5 deletions

View file

@ -134,8 +134,7 @@ namespace Ryujinx.Ava
private ThemeVariant DetectSystemTheme() private ThemeVariant DetectSystemTheme()
{ {
var platformSettings = this.PlatformSettings; var colorValues = PlatformSettings.GetColorValues();
var colorValues = platformSettings.GetColorValues();
return ConvertThemeVariant(colorValues.ThemeVariant); return ConvertThemeVariant(colorValues.ThemeVariant);
} }

View file

@ -100,10 +100,10 @@ namespace Ryujinx.Ava.UI.Windows
protected override void OnClosed(EventArgs e) protected override void OnClosed(EventArgs e)
{ {
base.OnClosed(e); base.OnClosed(e);
if (this.PlatformSettings != null) if (PlatformSettings != null)
{ {
// Unsubscribe to the ColorValuesChanged event // Unsubscribe to the ColorValuesChanged event
this.PlatformSettings.ColorValuesChanged -= OnPlatformColorValuesChanged; PlatformSettings.ColorValuesChanged -= OnPlatformColorValuesChanged;
} }
} }
@ -391,7 +391,7 @@ namespace Ryujinx.Ava.UI.Windows
Initialize(); Initialize();
// Subscribe to the ColorValuesChanged event // Subscribe to the ColorValuesChanged event
this.PlatformSettings.ColorValuesChanged += OnPlatformColorValuesChanged; PlatformSettings.ColorValuesChanged += OnPlatformColorValuesChanged;
ViewModel.Initialize( ViewModel.Initialize(
ContentManager, ContentManager,