From e71c2df39d579753546e4f0e95ce04a96be763a9 Mon Sep 17 00:00:00 2001 From: Eladash Date: Sun, 31 Jan 2021 20:33:10 +0200 Subject: [PATCH] Debugger: Add some more shortcut descriptions in F1 helper --- rpcs3/rpcs3qt/debugger_frame.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rpcs3/rpcs3qt/debugger_frame.cpp b/rpcs3/rpcs3qt/debugger_frame.cpp index 8be971107a..512505d3b5 100644 --- a/rpcs3/rpcs3qt/debugger_frame.cpp +++ b/rpcs3/rpcs3qt/debugger_frame.cpp @@ -268,6 +268,10 @@ void debugger_frame::keyPressEvent(QKeyEvent* event) "\nKey F10: Perform single-stepping on instructions." "\nKey F11: Perform step-over on instructions. (skip function calls)" "\nKey F1: Show this help dialog." + "\nKey Up: Scroll one instruction upwards. (address is decremented)" + "\nKey Down: Scroll one instruction downwards. (address is incremented)" + "\nKey Page-Up: Scroll upwards with steps count equal to the viewed instruction count." + "\nKey Page-Down: Scroll downwards with steps count equal to the viewed instruction count." "\nDouble-click: Set breakpoints.")); gui::utils::set_font_size(*l, 9);