Qt: Fix mismatched debugger accelerators

This commit is contained in:
Stenzek
2024-02-19 22:53:54 +09:00
parent 8756672e12
commit 2dc801e513
2 changed files with 3 additions and 3 deletions

View File

@ -266,7 +266,7 @@ void DebuggerWindow::onCodeViewContextMenuRequested(const QPoint& pt)
action = menu.addAction(QIcon::fromTheme("debugger-go-to-address"), tr("View in &Dump"));
connect(action, &QAction::triggered, this, [this, address]() { scrollToMemoryAddress(address); });
action = menu.addAction(QIcon::fromTheme("debug-trace-line"), tr("Follow Load/Store"));
action = menu.addAction(QIcon::fromTheme("debug-trace-line"), tr("&Follow Load/Store"));
connect(action, &QAction::triggered, this, [this, address]() { tryFollowLoadStore(address); });
menu.exec(m_ui.codeView->mapToGlobal(pt));