diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2007-04-14 10:03:06 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2007-04-14 10:03:06 +0000 |
| commit | f3858d62e5b72a4685c7588e44e4fced1993dc46 (patch) | |
| tree | 1385491da7634373467d3ef7af721be6a85d3a66 /lib/python/Screens/FixedMenu.py | |
| parent | c26cf2bece26e34923c082d2e2b08ccf08531d90 (diff) | |
| download | enigma2-f3858d62e5b72a4685c7588e44e4fced1993dc46.tar.gz enigma2-f3858d62e5b72a4685c7588e44e4fced1993dc46.zip | |
Sources.MenuList -> Sources.List
Diffstat (limited to 'lib/python/Screens/FixedMenu.py')
| -rw-r--r-- | lib/python/Screens/FixedMenu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/FixedMenu.py b/lib/python/Screens/FixedMenu.py index aa75ac57..96b2b5bd 100644 --- a/lib/python/Screens/FixedMenu.py +++ b/lib/python/Screens/FixedMenu.py @@ -1,5 +1,5 @@ from Screen import Screen -from Components.Sources.MenuList import MenuList +from Components.Sources.List import List from Components.ActionMap import ActionMap from Components.Header import Header @@ -11,7 +11,7 @@ class FixedMenu(Screen): def __init__(self, session, title, list): Screen.__init__(self, session) - self["menu"] = MenuList(list) + self["menu"] = List(list) self["actions"] = ActionMap(["OkCancelActions"], { |
