@@ -126,12 +126,12 @@ def __init__(self, session):
126126 "close" : (self .closeRecursive , _ ("Close the screen and exit all menus" )),
127127 "save" : (self .refreshInformation , _ ("Refresh the screen" )),
128128 "ok" : (self .refreshInformation , _ ("Refresh the screen" )),
129- "top" : (self ["information" ].moveTop , _ ("Move to first line / screen" )),
130- "pageUp" : (self ["information" ].pageUp , _ ("Move up a screen" )),
131- "up" : (self ["information" ].moveUp , _ ("Move up a line" )),
132- "down" : (self ["information" ].moveDown , _ ("Move down a line" )),
133- "pageDown" : (self ["information" ].pageDown , _ ("Move down a screen" )),
134- "bottom" : (self ["information" ].moveBottom , _ ("Move to last line / screen" ))
129+ "top" : (self ["information" ].goTop , _ ("Move to first line / screen" )),
130+ "pageUp" : (self ["information" ].goPageUp , _ ("Move up a screen" )),
131+ "up" : (self ["information" ].goLineUp , _ ("Move up a line" )),
132+ "down" : (self ["information" ].goLineDown , _ ("Move down a line" )),
133+ "pageDown" : (self ["information" ].goPageDown , _ ("Move down a screen" )),
134+ "bottom" : (self ["information" ].goBottom , _ ("Move to last line / screen" ))
135135 }, prio = 0 , description = _ ("Common Information Actions" ))
136136 colors = parameters .get ("InformationColors" , (0x00ffffff , 0x00ffffff , 0x00ffffff , 0x00cccccc , 0x00cccccc , 0x00ffff00 , 0x0000ffff ))
137137 if len (colors ) == len (INFO_COLORS ):
0 commit comments