diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2025-03-30 15:39:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-30 15:39:54 +0200 |
| commit | 1b85da9b85e72a555a08138aafcd2d75210ae078 (patch) | |
| tree | 3db201f209b4d799c253af7f845dfc9ab3b99d81 /Source/Core/DolphinQt/Debugger/CodeViewWidget.cpp | |
| parent | 9819d66a478be3d57af9278e6c2cb433556a78d1 (diff) | |
| parent | 1b87ea83e6064d534c3ba71d036f05ff4ffd5ec6 (diff) | |
Merge pull request #13471 from Nitch2024/CTRL+G
[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; |
