misc: chore: change ThemeManager ThemeChanged to a basic Action since both arguments are unused

This commit is contained in:
Evan Husted 2025-01-18 22:01:17 -06:00
parent b612fc5155
commit 2ecf999569
2 changed files with 3 additions and 3 deletions

View file

@ -4,11 +4,11 @@ namespace Ryujinx.Ava.Common
{
public static class ThemeManager
{
public static event EventHandler ThemeChanged;
public static event Action ThemeChanged;
public static void OnThemeChanged()
{
ThemeChanged?.Invoke(null, EventArgs.Empty);
ThemeChanged?.Invoke();
}
}
}