mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 23:45:12 +00:00
Debugger: Implement key-scrolling through threads
This commit is contained in:
parent
cbb1b1f28e
commit
e1744ceab2
2 changed files with 42 additions and 1 deletions
|
|
@ -272,6 +272,11 @@ void debugger_list::keyPressEvent(QKeyEvent* event)
|
|||
return;
|
||||
}
|
||||
|
||||
if (event->modifiers())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
switch (event->key())
|
||||
{
|
||||
case Qt::Key_PageUp: scroll(0 - m_item_count); return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue