1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-25 02:04:23 +00:00

Fixed an issue in the Projucer where the option to select the files to auto-generate for a new GUI application wouldn't create the correct files

This commit is contained in:
ed 2017-05-04 16:43:10 +01:00
parent 1e185e988f
commit 457e838971

View file

@ -45,8 +45,8 @@ struct GUIAppWizard : public NewProjectWizard
switch (setupComp.getFileCreationComboID())
{
case 0: createMainCpp = true; break;
case 1: createMainCpp = createWindow = true; break;
case 0: createMainCpp = createWindow = true; break;
case 1: createMainCpp = true; break;
case 2: break;
default: jassertfalse; break;
}