Qt/Debugger: Add Show in Code / Show in Memory

This commit is contained in:
spycrab
2018-12-28 19:12:30 +01:00
parent 0a8e04e469
commit 3e3f9565ec
9 changed files with 40 additions and 0 deletions

View File

@ -359,6 +359,10 @@ void MemoryViewWidget::OnContextMenu()
menu->addSeparator();
menu->addAction(tr("Show in code"), this, [this] { emit ShowCode(GetContextAddress()); });
menu->addSeparator();
menu->addAction(tr("Toggle Breakpoint"), this, &MemoryViewWidget::ToggleBreakpoint);
menu->exec(QCursor::pos());