mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-15 01:18:07 +00:00
Also check if it's disposed
This commit is contained in:
parent
f91006a1dc
commit
9afacd835c
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
@ -1145,7 +1145,7 @@ namespace Toolbox
|
|||
|
||||
private void consoleToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (form == null)
|
||||
if (form == null || form.IsDisposed)
|
||||
{
|
||||
form = new STConsoleForm();
|
||||
form.Show(this);
|
||||
|
|
Loading…
Reference in a new issue