summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
diff options
context:
space:
mode:
authorAnthony <Helios747@users.noreply.github.com>2019-10-14 13:28:56 -0700
committerGitHub <noreply@github.com>2019-10-14 13:28:56 -0700
commitc634bc86e5b7e93ae0d18904df4b924edec04b62 (patch)
tree1ba1e1743cb6669b9b0e5d73e4785a13119c4f7e /Source/Core/DolphinQt/Debugger/CodeWidget.cpp
parent3beb371cc9dbf38177231a17c1e88d8338e3e2c3 (diff)
parentbbeb25de48fa11103ed131eacf7ecf02bc9a1dd3 (diff)
Merge pull request #8405 from AdmiralCurtiss/debugger-address-search-usability
Qt/Debugger/CodeWidget: Allow pressing 'enter' in address search box.
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeWidget.cpp')
-rw-r--r--Source/Core/DolphinQt/Debugger/CodeWidget.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
index d158af2793..eec0b35f1c 100644
--- a/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
+++ b/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
@@ -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);