1
0
Fork 0

Jump to thread IP by double clicking.

This commit is contained in:
ZehMatt 2017-12-27 06:44:17 +01:00 committed by Duncan Ogilvie
parent 3e510440d2
commit 0e29990da5
1 changed files with 3 additions and 0 deletions

View File

@ -382,6 +382,9 @@ void ThreadView::doubleClickedSlot()
{
QString threadId = getCellContent(getInitialSelection(), 1);
DbgCmdExecDirect(QString("switchthread " + threadId).toUtf8().constData());
QString addr_text = getCellContent(getInitialSelection(), 4);
DbgCmdExecDirect(QString("disasm " + addr_text).toUtf8().constData());
}
void ThreadView::SetNameSlot()