Skip to content

Commit 54cd535

Browse files
authored
Merge pull request #3598 from openatv/IanSav-Information
[Information.py] Use current navigation method names
2 parents 8e05a60 + 6beda0c commit 54cd535

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/python/Screens/Information.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)