Qt: Fix mismatched debugger accelerators

This commit is contained in:
Stenzek 2024-02-19 22:53:54 +09:00
parent 8756672e12
commit 2dc801e513
No known key found for this signature in database
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));

View File

@ -345,7 +345,7 @@
<iconset theme="debug-toggle-breakpoint"/>
</property>
<property name="text">
<string>Toggle B&amp;reakpoint</string>
<string>Toggle &amp;Breakpoint</string>
</property>
<property name="toolTip">
<string>Toggle Breakpoint</string>
@ -406,7 +406,7 @@
<iconset theme="add-line"/>
</property>
<property name="text">
<string>Add &amp;Breakpoint</string>
<string>&amp;Add Breakpoint</string>
</property>
<property name="toolTip">
<string>Add Breakpoint</string>