mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
RegisterWidget: Fix view in code/memory
This commit is contained in:
@ -123,8 +123,10 @@ void RegisterWidget::ShowContextMenu()
|
||||
// It's not related to timekeeping devices.
|
||||
menu->addAction(tr("Add to &watch"), this,
|
||||
[this, item] { emit RequestMemoryBreakpoint(item->GetValue()); });
|
||||
menu->addAction(tr("View &memory"));
|
||||
menu->addAction(tr("View &code"));
|
||||
menu->addAction(tr("View &memory"), this,
|
||||
[this, item] { emit RequestViewInMemory(item->GetValue()); });
|
||||
menu->addAction(tr("View &code"), this,
|
||||
[this, item] { emit RequestViewInCode(item->GetValue()); });
|
||||
|
||||
menu->addSeparator();
|
||||
|
||||
|
Reference in New Issue
Block a user