mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-16 00:34:19 +00:00
Projucer: Make it simpler to uncomment config flags with no specified value in JUCE's AppConfig.h by including the "1" in the define
This commit is contained in:
parent
d6d5a18818
commit
95aa44bbfc
1 changed files with 1 additions and 1 deletions
|
|
@ -454,7 +454,7 @@ private:
|
|||
else if (value == Project::configFlagDisabled)
|
||||
out << " #define " << f->symbol << " 0";
|
||||
else if (f->defaultValue.isEmpty())
|
||||
out << " //#define " << f->symbol;
|
||||
out << " //#define " << f->symbol << " 1";
|
||||
else
|
||||
out << " #define " << f->symbol << " " << f->defaultValue;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue