We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bb6541 commit 70ebae8Copy full SHA for 70ebae8
src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs
@@ -294,6 +294,12 @@ private void RedoMenuItem_Click(object sender, EventArgs e)
294
295
private void ShowUndoHistoryMenuItem_Click(object sender, EventArgs e)
296
{
297
+ if (_undoForm != null && !_undoForm.IsDisposed)
298
+ {
299
+ // We could just BringToFront, but closing is probably better since the new one will appear in the expected screen location.
300
+ _undoForm.Close();
301
+ }
302
+
303
_undoForm = new UndoHistoryForm(this) { Owner = this };
304
_undoForm.Show();
305
_undoForm.UpdateValues();
0 commit comments