From a4472134206906098e16fffc57eaf085ac93a9d2 Mon Sep 17 00:00:00 2001 From: aldelaro5 Date: Fri, 30 Dec 2016 14:18:10 -0500 Subject: [PATCH] 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. --- Source/Core/DolphinWX/MainMenuBar.cpp | 8 ++++---- 1 file 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"));