From 2dc801e513f29599a1af9b2fda8533c72a51caf1 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Mon, 19 Feb 2024 22:53:54 +0900 Subject: [PATCH] Qt: Fix mismatched debugger accelerators --- src/duckstation-qt/debuggerwindow.cpp | 2 +- src/duckstation-qt/debuggerwindow.ui | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/duckstation-qt/debuggerwindow.cpp b/src/duckstation-qt/debuggerwindow.cpp index 3096d1bc4..8f7c45b34 100644 --- a/src/duckstation-qt/debuggerwindow.cpp +++ b/src/duckstation-qt/debuggerwindow.cpp @@ -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)); diff --git a/src/duckstation-qt/debuggerwindow.ui b/src/duckstation-qt/debuggerwindow.ui index 243703ea3..019b86fb2 100644 --- a/src/duckstation-qt/debuggerwindow.ui +++ b/src/duckstation-qt/debuggerwindow.ui @@ -345,7 +345,7 @@ - Toggle B&reakpoint + Toggle &Breakpoint Toggle Breakpoint @@ -406,7 +406,7 @@ - Add &Breakpoint + &Add Breakpoint Add Breakpoint