1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-06 07:09:39 +02:00

Forgot to call SetExitOnFrameDelete(false) on OSX

Once the root frame was removed, I should have made the above
call, but forgot to add it.
This commit is contained in:
Leland Lucius 2015-07-20 02:54:13 -05:00
parent d7418b5b98
commit b9cb660c83

View File

@ -1408,11 +1408,10 @@ bool AudacityApp::OnInit()
mRecentFiles->UseMenu(recentMenu);
mRecentFiles->AddFilesToMenu(recentMenu);
SetExitOnFrameDelete(false);
#endif //__WXMAC__
SetExitOnFrameDelete(true);
AudacityProject *project = CreateNewAudacityProject();
mCmdHandler->SetProject(project);
wxWindow * pWnd = MakeHijackPanel() ;