aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/ScartLoopThrough.py
blob: b46d1694c9ecccc01e55f229d0b66de45f1a51ed (plain)
1
2
3
4
5
6
7
8
9
10
11
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
			})