mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-06-10 23:04:04 +09:00
Merge branch 'master' of github.com:curioustorvald/tsvm
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user