Make PgDown behavior more usual.

Closes #480.
This commit is contained in:
Hisham 2016-05-04 22:41:52 -03:00
parent c37be409a9
commit 759caf0f8f
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ bool Panel_onKey(Panel* this, int key) {
break;
case KEY_NPAGE:
this->selected += (this->h - 1);
this->scrollV += (this->h - 1);
this->scrollV = MIN(MAX(0, Vector_size(this->items) - this->h), this->selected - this->h);
this->needsRedraw = true;
break;
case KEY_WHEELUP: