Browse Source

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

tags/2021-05-28
ed 6 years ago
parent
commit
4c58efa407
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/Project/UI/jucer_ProjectContentComponent.cpp

+ 1
- 1
extras/Projucer/Source/Project/UI/jucer_ProjectContentComponent.cpp 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


Loading…
Cancel
Save