diff options
| author | Nitch2024 <cedrick.collomb@gmail.com> | 2025-03-29 12:43:15 -0700 |
|---|---|---|
| committer | Nitch2024 <cedrick.collomb@gmail.com> | 2025-03-29 12:43:15 -0700 |
| commit | 1b87ea83e6064d534c3ba71d036f05ff4ffd5ec6 (patch) | |
| tree | e898747082b81a00f0d2a6b8e206d5b701a99d0f /Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | |
| parent | 1981f222284448cc8a69d970e1f8569dacec684e (diff) | |
[Debugger] CTRL+G support in code and memory view
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
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; |
