1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Fixed a bug that could cause focus to seemingly jump around in the config tree

This commit is contained in:
jules 2016-04-15 10:21:58 +01:00
parent 544b8d0ea7
commit 54d3cfac1d

View file

@ -1355,7 +1355,8 @@ bool ProjectContentComponent::isBuildEnabled() const
{
return project != nullptr
&& ! LiveBuildProjectSettings::isBuildDisabled (*project)
&& ProjucerLicences::getInstance()->hasLiveCodingLicence();
&& ProjucerLicences::getInstance()->hasLiveCodingLicence()
&& ProjucerLicences::getInstance()->isLoggedIn();
}
void ProjectContentComponent::refreshTabsIfBuildStatusChanged()