From 77ce389bb027cbf99fc76291c363c0986e021cb4 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 20 Aug 2014 14:43:08 -0400 Subject: [PATCH] DolphinWX: Get rid of unnecessary hotkey code. --- Source/Core/DolphinWX/FrameTools.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp index 04f2e4dd1e..373e7ce4d7 100644 --- a/Source/Core/DolphinWX/FrameTools.cpp +++ b/Source/Core/DolphinWX/FrameTools.cpp @@ -482,12 +482,6 @@ wxString CFrame::GetMenuLabel(int Id) Label = wxString::Format(_("Undefined %i"), Id); } - // wxWidgets only accepts Ctrl/Alt/Shift as menu accelerator - // modifiers. On OS X, "Ctrl+" is mapped to the Command key. -#ifdef __APPLE__ - if (hotkeymodifier & wxMOD_CMD) - hotkeymodifier |= wxMOD_CONTROL; -#endif hotkeymodifier &= wxMOD_CONTROL | wxMOD_ALT | wxMOD_SHIFT; Modifier = InputCommon::WXKeymodToString(hotkeymodifier);