mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-16 12:58:33 +02:00
[Debugger] CTRL+G support in code and memory view
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user