mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
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.
This commit is contained in:
@ -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"));
|
||||
|
||||
|
Reference in New Issue
Block a user