mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-01 08:29: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:
parent
51f91f392a
commit
e65d0ca77d
@ -1194,11 +1194,10 @@ bool AudacityApp::OnInit()
|
|||||||
wxSystemOptions::SetOption(wxMAC_WINDOW_PLAIN_TRANSITION, 1);
|
wxSystemOptions::SetOption(wxMAC_WINDOW_PLAIN_TRANSITION, 1);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef AUDACITY_NAME
|
// Don't use AUDACITY_NAME here.
|
||||||
wxString appName = wxT(AUDACITY_NAME);
|
// We want Audacity with a capital 'A'
|
||||||
#else
|
|
||||||
wxString appName = wxT("Audacity");
|
wxString appName = wxT("Audacity");
|
||||||
#endif
|
|
||||||
|
|
||||||
wxTheApp->SetAppName(appName);
|
wxTheApp->SetAppName(appName);
|
||||||
// Explicitly set since OSX will use it for the "Quit" menu item
|
// Explicitly set since OSX will use it for the "Quit" menu item
|
||||||
|
Loading…
x
Reference in New Issue
Block a user