From: Vadim Zeitlin Date: Mon, 25 Oct 2010 20:46:18 +0000 (+0000) Subject: Use the correct accelerator for the "Preferences" Apple menu item. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/86646f2aef4f4cde50ae28216606fd0ccacbbae5 Use the correct accelerator for the "Preferences" Apple menu item. Use the standard Command-, accelerator for the standard "Preferences" item in the Apple menu. Closes #12121. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65923 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/menu_osx.cpp b/src/osx/menu_osx.cpp index 3c8220ef75..c10dba486e 100644 --- a/src/osx/menu_osx.cpp +++ b/src/osx/menu_osx.cpp @@ -533,7 +533,8 @@ void wxMenuBar::Init() #if !wxOSX_USE_CARBON if ( wxApp::s_macPreferencesMenuItemId != wxID_NONE ) { - m_appleMenu->Append( wxApp::s_macPreferencesMenuItemId, "Preferences..." ); + m_appleMenu->Append( wxApp::s_macPreferencesMenuItemId, + "Preferences...\tCtrl+," ); m_appleMenu->AppendSeparator(); }