summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authoraldelaro5 <aldelaro5@gmail.com>2016-12-30 14:18:10 -0500
committeraldelaro5 <aldelaro5@gmail.com>2016-12-30 14:18:10 -0500
commita4472134206906098e16fffc57eaf085ac93a9d2 (patch)
treeb0b28957df53edab7b6e8128a560aa0ad60c51ea /Source/Core
parenta2e191649dd8af8823f5c7b55b2484e7d00717b9 (diff)
Remove the menu hotkeys of the debug menu bar
I think it's best to remove these if we are going to be adding new hotkeys since these would work no matter what so I can simply make these the default one instead.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/MainMenuBar.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/DolphinWX/MainMenuBar.cpp b/Source/Core/DolphinWX/MainMenuBar.cpp
index 679c6821b6..df46d67081 100644
--- a/Source/Core/DolphinWX/MainMenuBar.cpp
+++ b/Source/Core/DolphinWX/MainMenuBar.cpp
@@ -401,10 +401,10 @@ wxMenu* MainMenuBar::CreateDebugMenu()
_("Disable docking of perspective panes to main window"));
auto* const debug_menu = new wxMenu;
- debug_menu->Append(IDM_STEP, _("Step &Into\tF11"));
- debug_menu->Append(IDM_STEPOVER, _("Step &Over\tF10"));
- debug_menu->Append(IDM_STEPOUT, _("Step O&ut\tSHIFT+F11"));
- debug_menu->Append(IDM_TOGGLE_BREAKPOINT, _("Toggle &Breakpoint\tF9"));
+ debug_menu->Append(IDM_STEP, _("Step &Into"));
+ debug_menu->Append(IDM_STEPOVER, _("Step &Over"));
+ debug_menu->Append(IDM_STEPOUT, _("Step O&ut"));
+ debug_menu->Append(IDM_TOGGLE_BREAKPOINT, _("Toggle &Breakpoint"));
debug_menu->AppendSeparator();
debug_menu->AppendSubMenu(perspective_menu, _("Perspectives"), _("Edit Perspectives"));