MainForm - Fixed tab not being removed when 'MainForm_FormClosing' is called

This commit is contained in:
miku-666
2023-06-28 19:00:52 +02:00
parent eab5e66dbd
commit f4d9713124

View File

@@ -143,6 +143,7 @@ namespace PckStudio
if (TryGetEditor(tab, out IPckEditor editor))
{
editor.Close();
tabControl.TabPages.Remove(tab);
}
}
}