add space/backspace as pager keys for reslist

This commit is contained in:
dockes 2009-01-09 12:23:52 +00:00
parent ee63f15526
commit 9f14bf317c

View File

@ -265,10 +265,10 @@ void ResList::keyPressEvent(QKeyEvent * e)
if (e->key() == Qt::Key_Q && (e->state() & Qt::ControlButton)) {
recollNeedsExit = 1;
return;
} else if (e->key() == Qt::Key_Prior) {
} else if (e->key() == Qt::Key_Prior || e->key() == Qt::Key_Backspace) {
resPageUpOrBack();
return;
} else if (e->key() == Qt::Key_Next) {
} else if (e->key() == Qt::Key_Next || e->key() == Qt::Key_Space) {
resPageDownOrNext();
return;
}