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:
parent
7792fe2b34
commit
a0bd5f5be7
1 changed files with 3 additions and 0 deletions
|
|
@ -554,6 +554,9 @@ void ProjectContentComponent::showCurrentExporterSettings()
|
|||
|
||||
void ProjectContentComponent::showExporterSettings (const String& exporterName)
|
||||
{
|
||||
if (exporterName.isEmpty())
|
||||
return;
|
||||
|
||||
showExportersPanel();
|
||||
|
||||
if (auto* exportersPanel = getProjectTab()->getExportersTreePanel())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue