1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Projucer: Fixed a potential crash when quitting

This commit is contained in:
ed 2020-03-20 17:08:21 +00:00
parent 0c9067c9a4
commit bda05320cb

View file

@ -187,7 +187,9 @@ void ProjectContentComponent::setProject (Project* newProject)
deleteProjectTabs();
project = newProject;
rebuildProjectTabs();
if (project != nullptr)
rebuildProjectTabs();
}
}