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:
parent
32789aec6c
commit
bbc0bdb29e
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue