mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 14:31:24 +12: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_PageUp: scroll(0 - m_item_count); return;
|
||||||
case Qt::Key_PageDown: scroll(m_item_count); return;
|
case Qt::Key_PageDown: scroll(m_item_count); return;
|
||||||
case Qt::Key_Up: scroll(1); return;
|
case Qt::Key_Up: scroll(-1); return;
|
||||||
case Qt::Key_Down: scroll(-1); return;
|
case Qt::Key_Down: scroll(1); return;
|
||||||
case Qt::Key_I:
|
case Qt::Key_I:
|
||||||
{
|
{
|
||||||
if (event->isAutoRepeat())
|
if (event->isAutoRepeat())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue