Fix for settings not saving under mono 6.12

This commit is contained in:
Thomas McGrew 2021-10-19 22:41:56 -04:00
parent 7af0bbcefc
commit c374ca8b9e

View file

@ -140,11 +140,13 @@ namespace Mesen.GUI.Forms
private void btnOK_Click(object sender, EventArgs e)
{
this.DialogResult = ((Button)sender).DialogResult;
this.Close();
}
private void btnCancel_Click(object sender, EventArgs e)
{
this.DialogResult = ((Button)sender).DialogResult;
this.Close();
}
}