fix ramwatch popup dialogs not referencing ramwatch as parent

This commit is contained in:
zeromus 2016-02-17 16:37:35 -06:00
parent 3257b06f85
commit 2f50771494
1 changed files with 2 additions and 2 deletions

View File

@ -407,7 +407,7 @@ namespace BizHawk.Client.EmuHawk
we.SetWatch(SelectedWatches.First().Domain, SelectedWatches, duplicate ? WatchEditor.Mode.Duplicate : WatchEditor.Mode.Edit);
var result = we.ShowHawkDialog();
var result = we.ShowHawkDialog(this);
if (result == DialogResult.OK)
{
Changes();
@ -777,7 +777,7 @@ namespace BizHawk.Client.EmuHawk
poke.SetWatch(SelectedWatches);
if (poke.ShowHawkDialog() == DialogResult.OK)
if (poke.ShowHawkDialog(this) == DialogResult.OK)
{
UpdateValues();
}