1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-31 03:00:05 +00:00

Projucer: Ignore case in isValidExporterName()

This commit is contained in:
ed 2018-03-20 14:36:11 +00:00
parent 32789aec6c
commit bbc0bdb29e

View file

@ -365,7 +365,7 @@ bool isJUCEModule (const String& moduleID) noexcept
bool isValidExporterName (const String& exporterName) noexcept
{
return getJUCEExporters().contains (exporterName);
return getJUCEExporters().contains (exporterName, true);
}
String getTargetFolderForExporter (const String& exporterName) noexcept