mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 23:59:27 +01:00
Qt/Debugger/CodeWidget: Allow pressing 'enter' in address search box.
This commit is contained in:
parent
d39555919d
commit
bbeb25de48
@ -156,6 +156,7 @@ void CodeWidget::CreateWidgets()
|
||||
void CodeWidget::ConnectWidgets()
|
||||
{
|
||||
connect(m_search_address, &QLineEdit::textChanged, this, &CodeWidget::OnSearchAddress);
|
||||
connect(m_search_address, &QLineEdit::returnPressed, this, &CodeWidget::OnSearchAddress);
|
||||
connect(m_search_symbols, &QLineEdit::textChanged, this, &CodeWidget::OnSearchSymbols);
|
||||
|
||||
connect(m_symbols_list, &QListWidget::itemPressed, this, &CodeWidget::OnSelectSymbol);
|
||||
|
Loading…
x
Reference in New Issue
Block a user