summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/CodeWidget.cpp
diff options
context:
space:
mode:
authorAdmiral H. Curtiss <pikachu025@gmail.com>2019-10-14 21:47:27 +0200
committerAdmiral H. Curtiss <pikachu025@gmail.com>2019-10-14 21:47:27 +0200
commitbbeb25de48fa11103ed131eacf7ecf02bc9a1dd3 (patch)
tree9bdc906608598b5e109552f3236a10655f3d5c71 /Source/Core/DolphinQt/Debugger/CodeWidget.cpp
parentd39555919d39357b49a7eb02f2d96b9a71bf128b (diff)
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);