Skip to content
Permalink
Browse files
Merge pull request #8405 from AdmiralCurtiss/debugger-address-search-…
…usability

Qt/Debugger/CodeWidget: Allow pressing 'enter' in address search box.
  • Loading branch information
Helios747 committed Oct 14, 2019
2 parents 3beb371 + bbeb25d commit c634bc8
Showing 1 changed file with 1 addition and 0 deletions.
@@ -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);

0 comments on commit c634bc8

Please sign in to comment.