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

Projucer: Fixed a bug where the file name label would still be visible after closing a project

This commit is contained in:
ed 2017-05-19 16:32:06 +01:00
parent 51b15b1e9d
commit dab7f9e020

View file

@ -510,6 +510,10 @@ void ProjectContentComponent::hideEditor()
{
currentDocument = nullptr;
contentView = nullptr;
if (fileNameLabel != nullptr)
fileNameLabel->setVisible (false);
ProjucerApplication::getCommandManager().commandStatusChanged();
resized();
}