Skip to content

Commit

Permalink
Fix PgDown key.
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Beattie <mike@ethernal.org>
  • Loading branch information
mjbnz committed Nov 6, 2019
1 parent c1aa49d commit ad2c34b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ad2c34b

Please sign in to comment.