diff options
| author | stanley lieber <stanley.lieber@gmail.com> | 2011-09-25 23:03:35 -0500 |
|---|---|---|
| committer | stanley lieber <stanley.lieber@gmail.com> | 2011-09-25 23:03:35 -0500 |
| commit | a04ace69ffd28e4bd6fa95389368a142088dd4de (patch) | |
| tree | 333024f10e385091bde793b7c3b20e04d6b96a37 | |
| parent | 430fd52489b63aea689e47e8bfa9411ff3881b6d (diff) | |
| download | plan9front-a04ace69ffd28e4bd6fa95389368a142088dd4de.tar.xz | |
mothra: increase area traversed by pgup/pgdn
| -rw-r--r-- | sys/src/cmd/mothra/mothra.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/src/cmd/mothra/mothra.c b/sys/src/cmd/mothra/mothra.c index c7a8940e6..bc42656ec 100644 --- a/sys/src/cmd/mothra/mothra.c +++ b/sys/src/cmd/mothra/mothra.c @@ -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); |
