|
|
@@ -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();
|
|
|
}
|
|
|
}
|
|
|
}
|