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:
parent
544b8d0ea7
commit
54d3cfac1d
1 changed files with 2 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue