From 1b87ea83e6064d534c3ba71d036f05ff4ffd5ec6 Mon Sep 17 00:00:00 2001 From: Nitch2024 Date: Sat, 29 Mar 2025 12:43:15 -0700 Subject: [Debugger] CTRL+G support in code and memory view --- Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp') diff --git a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp index 696ff60d47..1f5de76ff0 100644 --- a/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp @@ -1085,6 +1085,11 @@ void CodeViewWidget::keyPressEvent(QKeyEvent* event) m_address += rowCount() * sizeof(u32); Update(); return; + case Qt::Key_G: + if (event->modifiers() == Qt::ControlModifier) + { + emit ActivateSearch(); + } default: QWidget::keyPressEvent(event); break; -- cgit v1.2.3