[Debugger] CTRL+G support in code and memory view

This commit is contained in:
Nitch2024
2025-03-29 12:43:15 -07:00
parent 1981f22228
commit 1b87ea83e6
8 changed files with 35 additions and 0 deletions

View File

@ -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;