Revert no longer necessary

This commit is contained in:
Isaac Marovitz 2024-04-19 17:51:31 -04:00
parent 8ffe522f53
commit 3145934efc
No known key found for this signature in database
GPG key ID: 97250B2B09A132E1

View file

@ -129,11 +129,6 @@ namespace Ryujinx.Ava.UI.Windows
} }
} }
private static void RevertIfNotSaved()
{
Program.ReloadConfig();
}
private async void Cancel_OnClick(object sender, RoutedEventArgs e) private async void Cancel_OnClick(object sender, RoutedEventArgs e)
{ {
if (ViewModel.IsModified) if (ViewModel.IsModified)
@ -152,7 +147,6 @@ namespace Ryujinx.Ava.UI.Windows
} }
} }
RevertIfNotSaved();
Close(); Close();
} }