1
0
mirror of synced 2024-11-12 10:10:50 +01:00

Also check if it's disposed

This commit is contained in:
KillzXGaming 2019-04-30 18:10:54 -04:00
parent f91006a1dc
commit 9afacd835c
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -1145,7 +1145,7 @@ namespace Toolbox
private void consoleToolStripMenuItem_Click(object sender, EventArgs e) private void consoleToolStripMenuItem_Click(object sender, EventArgs e)
{ {
if (form == null) if (form == null || form.IsDisposed)
{ {
form = new STConsoleForm(); form = new STConsoleForm();
form.Show(this); form.Show(this);