mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-07 19:51:51 +09:00
Merge branch 'master' of github.com:curioustorvald/tsvm
This commit is contained in:
@@ -447,10 +447,10 @@ while (!exit) {
|
||||
cursorMoveRelative(0,1);
|
||||
}
|
||||
else if (key == con.KEY_PAGE_UP) {
|
||||
cursorMoveRelative(0, -paintHeight + 1);
|
||||
cursorMoveRelative(0, -paintHeight + scrollPeek);
|
||||
}
|
||||
else if (key == con.KEY_PAGE_DOWN) {
|
||||
cursorMoveRelative(0, paintHeight - 1);
|
||||
cursorMoveRelative(0, paintHeight - scrollPeek);
|
||||
}
|
||||
else if (key == con.KEY_HOME) {
|
||||
cursoringCol = 0;
|
||||
|
||||
Reference in New Issue
Block a user