From bdfdd9668621fee217931eaccb1932e6878aa487 Mon Sep 17 00:00:00 2001 From: scepheo Date: Fri, 30 Jan 2015 16:15:08 +0000 Subject: [PATCH] RAM Poke: Pressing the "Poke" button now also closes the dialog. --- BizHawk.Client.EmuHawk/tools/Watch/RamPoke.cs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Watch/RamPoke.cs b/BizHawk.Client.EmuHawk/tools/Watch/RamPoke.cs index 2e805b676d..3d4e8dd13c 100644 --- a/BizHawk.Client.EmuHawk/tools/Watch/RamPoke.cs +++ b/BizHawk.Client.EmuHawk/tools/Watch/RamPoke.cs @@ -103,13 +103,21 @@ namespace BizHawk.Client.EmuHawk private void Ok_Click(object sender, EventArgs e) { var success = _watchList.All(watch => watch.Poke(ValueBox.Text)); + if (ParentTool != null) { ParentTool.UpdateValues(); } - OutputLabel.Text = success ? "Value successfully written." - : "An error occured when writing Value."; + if (success) + { + DialogResult = DialogResult.OK; + Close(); + } + else + { + OutputLabel.Text = "An error occured when writing Value."; + } } } }