Merge branch 'master' of github.com:curioustorvald/tsvm

This commit is contained in:
minjaesong
2021-04-22 10:58:22 +09:00

View File

@@ -447,10 +447,10 @@ while (!exit) {
cursorMoveRelative(0,1); cursorMoveRelative(0,1);
} }
else if (key == con.KEY_PAGE_UP) { else if (key == con.KEY_PAGE_UP) {
cursorMoveRelative(0, -paintHeight + 1); cursorMoveRelative(0, -paintHeight + scrollPeek);
} }
else if (key == con.KEY_PAGE_DOWN) { else if (key == con.KEY_PAGE_DOWN) {
cursorMoveRelative(0, paintHeight - 1); cursorMoveRelative(0, paintHeight - scrollPeek);
} }
else if (key == con.KEY_HOME) { else if (key == con.KEY_HOME) {
cursoringCol = 0; cursoringCol = 0;