mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
mProjectPanel null fix
This commit is contained in:
parent
f9e9eddbc0
commit
f89ad51131
1 changed files with 2 additions and 2 deletions
|
@ -2934,7 +2934,7 @@ namespace IDE
|
||||||
|
|
||||||
AddProjectToWorkspace(project, false);
|
AddProjectToWorkspace(project, false);
|
||||||
if (addToUI)
|
if (addToUI)
|
||||||
mProjectPanel.InitProject(project, null);
|
mProjectPanel?.InitProject(project, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!hadLoad)
|
if (!hadLoad)
|
||||||
|
@ -2954,7 +2954,7 @@ namespace IDE
|
||||||
|
|
||||||
if (loadFailed)
|
if (loadFailed)
|
||||||
{
|
{
|
||||||
mProjectPanel.RebuildUI();
|
mProjectPanel?.RebuildUI();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue