1
0
Fork 0

GUI: double click in trace browser now follows in disassembly

This commit is contained in:
Duncan Ogilvie 2020-01-08 01:22:56 +01:00
parent 3925d4281a
commit 6cab250906
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 4 additions and 2 deletions

View File

@ -687,7 +687,8 @@ void TraceBrowser::mouseDoubleClickEvent(QMouseEvent* event)
{
switch(getColumnIndexFromX(event->x()))
{
case 0://Index: ???
case 0://Index: follow
followDisassemblySlot();
break;
case 1://Address: set RVA
if(mRvaDisplayEnabled && mTraceFile->Registers(getInitialSelection()).regcontext.cip == mRvaDisplayBase)
@ -702,7 +703,8 @@ void TraceBrowser::mouseDoubleClickEvent(QMouseEvent* event)
case 2: //Opcode: Breakpoint
mBreakpointMenu->toggleInt3BPActionSlot();
break;
case 3: //Instructions: ???
case 3: //Instructions: follow
followDisassemblySlot();
break;
case 4: //Comment
setCommentSlot();