aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/ScartLoopThrough.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens/ScartLoopThrough.py')
-rw-r--r--lib/python/Screens/ScartLoopThrough.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/python/Screens/ScartLoopThrough.py b/lib/python/Screens/ScartLoopThrough.py
new file mode 100644
index 00000000..b46d1694
--- /dev/null
+++ b/lib/python/Screens/ScartLoopThrough.py
@@ -0,0 +1,12 @@
+from Screen import Screen
+from Components.ActionMap import ActionMap
+
+class ScartLoopThrough(Screen):
+ def __init__(self, session):
+ Screen.__init__(self, session)
+
+ self["actions"] = ActionMap(["OkCancelActions"],
+ {
+ "cancel": self.close
+ })
+