Merge pull request #7658 from spycrab/debugger_show

Qt/Debugger: Add Show in Code / Show in Memory
This commit is contained in:
spycrab
2018-12-29 15:08:51 +01:00
committed by GitHub
9 changed files with 40 additions and 0 deletions

View File

@ -367,6 +367,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());