now infobar disappears after 5s - animation is broken now
[enigma2.git] / lib / python / Screens / ScartLoopThrough.py
1 from Screen import Screen
2 from Components.ActionMap import ActionMap
3
4 class ScartLoopThrough(Screen):
5         def __init__(self, session):
6                 Screen.__init__(self, session)
7
8                 self["actions"] = ActionMap(["OkCancelActions"], 
9                         {
10                                 "cancel": self.close
11                         })
12