diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-11-13 20:07:18 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-11-13 20:07:18 +0000 |
| commit | ef70219ab7250f14f0aec66670d67aaed4a0774f (patch) | |
| tree | 6f10c8ce9f6e865331b500fd70340bad2ba84692 /lib/python | |
| parent | dfaf462829896f94c2ff9c47953b3f904e8d5e38 (diff) | |
| download | enigma2-ef70219ab7250f14f0aec66670d67aaed4a0774f.tar.gz enigma2-ef70219ab7250f14f0aec66670d67aaed4a0774f.zip | |
use more generic .quit()
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/InfoBar.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py index 3c776178..e50d0a9e 100644 --- a/lib/python/Screens/InfoBar.py +++ b/lib/python/Screens/InfoBar.py @@ -157,8 +157,7 @@ class InfoBar(Screen): def powertimer(self): print "PowerOff - Now!" - configfile.save() - quitMainloop() + self.quit() def powerdown(self): self.powerKeyTimer.start(3000) @@ -248,10 +247,10 @@ class InfoBar(Screen): else: print 'no epg for service', ref.toString() - #def quit(self): - # self.session.open(Standby, self) - #configfile.save() - #quitMainloop() + def quit(self): + # self.session.open(Standby, self) + configfile.save() + quitMainloop() def stopCurrentRecording(self): print "remove entry" |
