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

Projucer: Fixed an issue when attempting to open the settings page for a nonexistent exporter

This commit is contained in:
Tom Poole 2017-11-27 15:37:39 +00:00
parent 7792fe2b34
commit a0bd5f5be7

View file

@ -554,6 +554,9 @@ void ProjectContentComponent::showCurrentExporterSettings()
void ProjectContentComponent::showExporterSettings (const String& exporterName)
{
if (exporterName.isEmpty())
return;
showExportersPanel();
if (auto* exportersPanel = getProjectTab()->getExportersTreePanel())