From 707e4a5fdd2688c2c15e681a538aa09c47e5c108 Mon Sep 17 00:00:00 2001 From: shygoo Date: Thu, 3 Jan 2019 15:20:20 -0600 Subject: [PATCH] [Debugger] Add step-over button to dlg resize map and fix tooltip (fix #1541) --- Source/Project64/UserInterface/Debugger/Debugger-Commands.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Project64/UserInterface/Debugger/Debugger-Commands.h b/Source/Project64/UserInterface/Debugger/Debugger-Commands.h index 12c5ef9cc..6b66fe6df 100644 --- a/Source/Project64/UserInterface/Debugger/Debugger-Commands.h +++ b/Source/Project64/UserInterface/Debugger/Debugger-Commands.h @@ -131,6 +131,7 @@ private: BEGIN_DLGRESIZE_MAP(CDebugCommandsView) DLGRESIZE_CONTROL(IDC_GO_BTN, DLSZ_MOVE_X) DLGRESIZE_CONTROL(IDC_STEP_BTN, DLSZ_MOVE_X) + DLGRESIZE_CONTROL(IDC_STEPOVER_BTN, DLSZ_MOVE_X) DLGRESIZE_CONTROL(IDC_SKIP_BTN, DLSZ_MOVE_X) DLGRESIZE_CONTROL(IDC_ADDR_EDIT, DLSZ_MOVE_X) DLGRESIZE_CONTROL(IDC_SYMBOLS_BTN, DLSZ_MOVE_X) @@ -152,7 +153,7 @@ private: BEGIN_TOOLTIP_MAP() TOOLTIP(IDC_SKIP_BTN, "Skip (F1)") TOOLTIP(IDC_STEP_BTN, "Step (F2)") - TOOLTIP(IDC_STEP_BTN, "Step Over (F3)") + TOOLTIP(IDC_STEPOVER_BTN, "Step Over (F3)") TOOLTIP(IDC_GO_BTN, "Go (F4)") TOOLTIP(IDC_ADDBP_BTN, "Add breakpoint...") TOOLTIP(IDC_RMBP_BTN, "Remove selected breakpoint")