mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-20 01:14:20 +00:00
Introjucer: launching a project now opens the first possible exporter in the list.
This commit is contained in:
parent
abb4946191
commit
b11527d751
9 changed files with 36 additions and 117 deletions
|
|
@ -452,10 +452,9 @@ void ProjectContentComponent::openInIDE()
|
|||
{
|
||||
if (project != nullptr)
|
||||
{
|
||||
ScopedPointer <ProjectExporter> exporter (ProjectExporter::createPlatformDefaultExporter (*project));
|
||||
|
||||
if (exporter != nullptr)
|
||||
exporter->launchProject();
|
||||
for (Project::ExporterIterator exporter (*project); exporter.next();)
|
||||
if (exporter->launchProject())
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue