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:
parent
43e623661e
commit
4c58efa407
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue