From ad2c34be176518313e22d94db933a42d25d89f91 Mon Sep 17 00:00:00 2001 From: Mike Beattie Date: Wed, 6 Nov 2019 03:08:37 +0000 Subject: [PATCH] Fix PgDown key. Signed-off-by: Mike Beattie --- src/ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui.c b/src/ui.c index 23769390..de295eae 100644 --- a/src/ui.c +++ b/src/ui.c @@ -2423,7 +2423,7 @@ gboolean ctrlKeyPgDown() while (dl && (((DrawNode *) dl->data)->selected != TRUE)) dl = g_list_next(dl); setEntryActiveStatus((DrawNode *) dl->data, FALSE); - reorderScrpos(bottomDrawLine); + reorderScrpos(bottomDrawLine - 1); dl = g_list_first(drawlist); while (dl && (((DrawNode *) dl->data)->scrpos != 1)) dl = g_list_next(dl);