mothra: increase area traversed by pgup/pgdn
This commit is contained in:
parent
430fd52489
commit
a04ace69ff
1 changed files with 2 additions and 2 deletions
|
@ -329,13 +329,13 @@ void main(int argc, char *argv[]){
|
|||
scrolltext(-text->size.y/4);
|
||||
break;
|
||||
case Kpgup:
|
||||
scrolltext(-text->size.y/3);
|
||||
scrolltext(-text->size.y/2);
|
||||
break;
|
||||
case Kdown:
|
||||
scrolltext(text->size.y/4);
|
||||
break;
|
||||
case Kpgdown:
|
||||
scrolltext(text->size.y/3);
|
||||
scrolltext(text->size.y/2);
|
||||
break;
|
||||
case Kend:
|
||||
scrolltext(text->size.y*1000);
|
||||
|
|
Loading…
Reference in a new issue