Qt: Fix mismatched debugger accelerators
This commit is contained in:
parent
8756672e12
commit
2dc801e513
|
@ -266,7 +266,7 @@ void DebuggerWindow::onCodeViewContextMenuRequested(const QPoint& pt)
|
||||||
action = menu.addAction(QIcon::fromTheme("debugger-go-to-address"), tr("View in &Dump"));
|
action = menu.addAction(QIcon::fromTheme("debugger-go-to-address"), tr("View in &Dump"));
|
||||||
connect(action, &QAction::triggered, this, [this, address]() { scrollToMemoryAddress(address); });
|
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); });
|
connect(action, &QAction::triggered, this, [this, address]() { tryFollowLoadStore(address); });
|
||||||
|
|
||||||
menu.exec(m_ui.codeView->mapToGlobal(pt));
|
menu.exec(m_ui.codeView->mapToGlobal(pt));
|
||||||
|
|
|
@ -345,7 +345,7 @@
|
||||||
<iconset theme="debug-toggle-breakpoint"/>
|
<iconset theme="debug-toggle-breakpoint"/>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Toggle B&reakpoint</string>
|
<string>Toggle &Breakpoint</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Toggle Breakpoint</string>
|
<string>Toggle Breakpoint</string>
|
||||||
|
@ -406,7 +406,7 @@
|
||||||
<iconset theme="add-line"/>
|
<iconset theme="add-line"/>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Add &Breakpoint</string>
|
<string>&Add Breakpoint</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Add Breakpoint</string>
|
<string>Add Breakpoint</string>
|
||||||
|
|
Loading…
Reference in New Issue