mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-30 16:01:09 -04:00
[Debugger] CTRL+G support in code and memory view
This commit is contained in:
@@ -212,6 +212,7 @@ void CodeWidget::ConnectWidgets()
|
||||
connect(m_code_view, &CodeViewWidget::RequestPPCComparison, this,
|
||||
&CodeWidget::RequestPPCComparison);
|
||||
connect(m_code_view, &CodeViewWidget::ShowMemory, this, &CodeWidget::ShowMemory);
|
||||
connect(m_code_view, &CodeViewWidget::ActivateSearch, this, &CodeWidget::ActivateSearchAddress);
|
||||
}
|
||||
|
||||
void CodeWidget::OnBranchWatchDialog()
|
||||
@@ -243,6 +244,12 @@ void CodeWidget::OnPPCSymbolsChanged()
|
||||
}
|
||||
}
|
||||
|
||||
void CodeWidget::ActivateSearchAddress()
|
||||
{
|
||||
m_search_address->setFocus();
|
||||
m_search_address->selectAll();
|
||||
}
|
||||
|
||||
void CodeWidget::OnSearchAddress()
|
||||
{
|
||||
bool good = true;
|
||||
|
||||
Reference in New Issue
Block a user