mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Merge pull request #7658 from spycrab/debugger_show
Qt/Debugger: Add Show in Code / Show in Memory
This commit is contained in:
@ -220,6 +220,7 @@ void MemoryWidget::ConnectWidgets()
|
||||
connect(m_bp_log_check, &QCheckBox::toggled, this, &MemoryWidget::OnBPLogChanged);
|
||||
connect(m_memory_view, &MemoryViewWidget::BreakpointsChanged, this,
|
||||
&MemoryWidget::BreakpointsChanged);
|
||||
connect(m_memory_view, &MemoryViewWidget::ShowCode, this, &MemoryWidget::ShowCode);
|
||||
}
|
||||
|
||||
void MemoryWidget::closeEvent(QCloseEvent*)
|
||||
@ -338,6 +339,15 @@ void MemoryWidget::OnBPTypeChanged()
|
||||
SaveSettings();
|
||||
}
|
||||
|
||||
void MemoryWidget::SetAddress(u32 address)
|
||||
{
|
||||
m_memory_view->SetAddress(address);
|
||||
Settings::Instance().SetMemoryVisible(true);
|
||||
raise();
|
||||
|
||||
m_memory_view->setFocus();
|
||||
}
|
||||
|
||||
void MemoryWidget::OnSearchAddress()
|
||||
{
|
||||
bool good;
|
||||
|
Reference in New Issue
Block a user