Fixed default height of new project dialog on Mac OS X

This commit is contained in:
Florian Rival
2015-04-12 16:02:32 +12:00
parent 285cae40ba
commit dd914bf747

View File

@@ -142,7 +142,9 @@ NewProjectDialog::NewProjectDialog(wxWindow* parent,wxWindowID id,const wxPoint&
projectFileEdit->SetValue(newProjectFile);
#if !defined(MACOS)
SetSize(640,480);
SetSize(640, 480);
#else
SetSize(-1, 480);
#endif
platformList->InsertColumn(0,_("Platform"), wxLIST_FORMAT_LEFT, 640);