Fix for mono not saving settings

This commit is contained in:
Thomas McGrew 2021-10-19 22:04:02 -04:00
parent c9b01cf899
commit 82b0e6d4d9

View file

@ -148,11 +148,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();
}
}