1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

mProjectPanel null fix

This commit is contained in:
Brian Fiete 2025-03-20 10:04:41 -04:00
parent f9e9eddbc0
commit f89ad51131

View file

@ -2934,7 +2934,7 @@ namespace IDE
AddProjectToWorkspace(project, false);
if (addToUI)
mProjectPanel.InitProject(project, null);
mProjectPanel?.InitProject(project, null);
}
}
if (!hadLoad)
@ -2954,7 +2954,7 @@ namespace IDE
if (loadFailed)
{
mProjectPanel.RebuildUI();
mProjectPanel?.RebuildUI();
}
}