aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/FixedMenu.py4
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"],
{