mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-19 16:51:38 +00:00
[Debugger] CTRL+G support in code and memory view
This commit is contained in:
parent
1981f22228
commit
1b87ea83e6
8 changed files with 35 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue