fix redraw-problem with NumericalTextInput in TimerEntry
[enigma2.git] / lib / python / Screens / Standby.py
1 from Screen import Screen
2 from Components.ActionMap import ActionMap
3
4 class Standby(Screen):
5         def Power(self):
6                 print "leave standby"
7                 self.close()
8
9         def __init__(self, session):
10                 Screen.__init__(self, session)
11                 
12                 print "enter standby"
13
14                 self["actions"] = ActionMap( [ "StandbyActions" ],
15                 {
16                         "power": self.Power
17                 })
18                 
19                 #stop/pause? playing services
20                 #switch off avs
21