summaryrefslogtreecommitdiffstats
path: root/Panel.c
diff options
context:
space:
mode:
Diffstat (limited to 'Panel.c')
-rw-r--r--Panel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Panel.c b/Panel.c
index 1c45714f..65d13423 100644
--- a/Panel.c
+++ b/Panel.c
@@ -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: