OSDN Git Service

fix
authorsuma <devnull@localhost>
Sun, 8 Feb 2009 21:52:27 +0000 (06:52 +0900)
committersuma <devnull@localhost>
Sun, 8 Feb 2009 21:52:27 +0000 (06:52 +0900)
src/control/standard/scursor.cpp

index dc9232c..2bb46dc 100644 (file)
@@ -106,12 +106,12 @@ void Cursor::Down(uint count)
 
 void Cursor::PageUp(uint)
 {
-       Up(view->getConfig().drawableLines(view->height()) / 3);
+       Up(view->getConfig().drawableLines(view->height()) / 2);
 }
 
 void Cursor::PageDown(uint)
 {
-       Down(view->getConfig().drawableLines(view->height()) / 3);
+       Down(view->getConfig().drawableLines(view->height()) / 2);
 }
 
 void Cursor::refreshTopByUp()