Add ctrl+n 'new tab' shortcut to memory viewer
Sometimes you just want a new tab that is not a duplicate.
This commit is contained in:
parent
e049c48b2b
commit
95468ef91a
|
@ -562,6 +562,9 @@ LRESULT CDebugMemoryView::OnHxCtrlKeyPressed(LPNMHDR lpNMHDR)
|
|||
case 'W':
|
||||
m_Breakpoints->WBPToggle(address);
|
||||
break;
|
||||
case 'N':
|
||||
AddTab(0x80000000, true, 4);
|
||||
break;
|
||||
case 'R':
|
||||
m_Breakpoints->RBPToggle(address);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue