From 26b3970485fc29925e1acd728877e1009d1715f2 Mon Sep 17 00:00:00 2001 From: Eladash Date: Thu, 31 Aug 2023 15:29:11 +0300 Subject: [PATCH] debugger_list: Fix key up/down direction --- rpcs3/rpcs3qt/debugger_list.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/rpcs3qt/debugger_list.cpp b/rpcs3/rpcs3qt/debugger_list.cpp index d7ce622abe..002ae1e0bb 100644 --- a/rpcs3/rpcs3qt/debugger_list.cpp +++ b/rpcs3/rpcs3qt/debugger_list.cpp @@ -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())