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 ec21b58 commit 3f36706Copy full SHA for 3f36706
src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs
@@ -306,6 +306,12 @@ private void RedoMenuItem_Click(object sender, EventArgs e)
306
307
private void ShowUndoHistoryMenuItem_Click(object sender, EventArgs e)
308
{
309
+ if (_undoForm != null && !_undoForm.IsDisposed)
310
+ {
311
+ // We could just BringToFront, but closing is probably better since the new one will appear in the expected screen location.
312
+ _undoForm.Close();
313
+ }
314
+
315
_undoForm = new UndoHistoryForm(this) { Owner = this };
316
_undoForm.Show();
317
_undoForm.UpdateValues();
0 commit comments