mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
debugger_list: Fix key up/down direction
This commit is contained in:
parent
90ad129b83
commit
26b3970485
1 changed files with 2 additions and 2 deletions
|
@ -328,8 +328,8 @@ void debugger_list::keyPressEvent(QKeyEvent* event)
|
|||
{
|
||||
case Qt::Key_PageUp: scroll(0 - m_item_count); return;
|
||||
case Qt::Key_PageDown: scroll(m_item_count); return;
|
||||
case Qt::Key_Up: scroll(1); return;
|
||||
case Qt::Key_Down: scroll(-1); return;
|
||||
case Qt::Key_Up: scroll(-1); return;
|
||||
case Qt::Key_Down: scroll(1); return;
|
||||
case Qt::Key_I:
|
||||
{
|
||||
if (event->isAutoRepeat())
|
||||
|
|
Loading…
Add table
Reference in a new issue