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

Projucer: Fixed a bug when clicking the save and open in IDE button after changing the target project folder setting

This commit is contained in:
ed 2019-03-11 10:00:14 +00:00
parent 43e623661e
commit 4c58efa407

View file

@ -661,7 +661,7 @@ void ProjectContentComponent::openInSelectedIDE (bool saveFirst)
for (Project::ExporterIterator exporter (*project); exporter.next();)
{
if (exporter->canLaunchProject() && exporter->getName() == selectedIDE)
if (exporter->canLaunchProject() && exporter->getName().contains (selectedIDE))
{
auto tempProject = project->isTemporaryProject(); // store this before saving as it will always be false after