summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-08-20 14:43:08 -0400
committerLioncash <mathew1800@gmail.com>2014-08-20 14:43:08 -0400
commit77ce389bb027cbf99fc76291c363c0986e021cb4 (patch)
tree99d86bcb176e14239f4d0aff0884740699cdf693 /Source/Core
parenta09cf1d8f1bdc58de56b8fbb2d2282b8e59d2e69 (diff)
DolphinWX: Get rid of unnecessary hotkey code.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/FrameTools.cpp6
1 files changed, 0 insertions, 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);