mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-06 19:22:39 +00:00
[Debugger] CTRL+G support in code and memory view
This commit is contained in:
parent
1981f22228
commit
1b87ea83e6
8 changed files with 35 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue