1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-31 07:59:27 +02:00

Bug 1538 - Mac: "Audacity > Quit audacity" does not have Audacity capitalised

This was caused by using the #define AUDACITY_NAME which had changed to use
lower case 'a' in Audacity.
This commit is contained in:
James Crook 2017-01-04 14:46:15 +00:00
parent 51f91f392a
commit e65d0ca77d

View File

@ -1194,11 +1194,10 @@ bool AudacityApp::OnInit()
wxSystemOptions::SetOption(wxMAC_WINDOW_PLAIN_TRANSITION, 1);
#endif
#ifdef AUDACITY_NAME
wxString appName = wxT(AUDACITY_NAME);
#else
// Don't use AUDACITY_NAME here.
// We want Audacity with a capital 'A'
wxString appName = wxT("Audacity");
#endif
wxTheApp->SetAppName(appName);
// Explicitly set since OSX will use it for the "Quit" menu item