1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-13 05:44:11 +02:00

Small changes, IDE fixes

This commit is contained in:
Brian Fiete 2019-09-12 09:48:38 -07:00
parent 093eaa64c0
commit a8df8c0e47
10 changed files with 141 additions and 18 deletions

View file

@ -9430,6 +9430,14 @@ namespace IDE
void ShowStartupFile()
{
bool hasSourceShown = false;
WithSourceViewPanels(scope [&] (panel) =>
{
hasSourceShown = true;
});
if (hasSourceShown)
return;
if (mWorkspace.mStartupProject != null)
{
bool didShow = false;