From 607165cc9eb0a6b4d5fc572d9c3740e145019f8c Mon Sep 17 00:00:00 2001 From: tomcw Date: Tue, 19 Dec 2017 23:07:12 +0000 Subject: [PATCH] Debugger: default to Shift+Click to toggle diasm columns (#462) --- source/Debugger/Debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Debugger/Debug.cpp b/source/Debugger/Debug.cpp index 4290384e..7b2f2e89 100644 --- a/source/Debugger/Debug.cpp +++ b/source/Debugger/Debug.cpp @@ -188,7 +188,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // Config - Disassembly bool g_bConfigDisasmAddressView = true; - int g_bConfigDisasmClick = 0; // GH#462 alt=1, ctrl=2, shift=4 bitmask + int g_bConfigDisasmClick = 4; // GH#462 alt=1, ctrl=2, shift=4 bitmask (default to Shift-Click) bool g_bConfigDisasmAddressColon = true; bool g_bConfigDisasmOpcodesView = true; bool g_bConfigDisasmOpcodeSpaces = true;