Debugger: Implement key-scrolling through threads

This commit is contained in:
Eladash 2023-04-30 05:21:14 +03:00 committed by Megamouse
parent cbb1b1f28e
commit e1744ceab2
2 changed files with 42 additions and 1 deletions

View file

@ -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;