diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-03-07 00:48:16 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-03-07 00:48:16 +0000 |
| commit | 4b3b4e2e84cc265cc14bd3c4deb91e48a4e74c4f (patch) | |
| tree | b0ea005ccf7114c109ca73a381fea1eef728949d /lib/python | |
| parent | 82c3d190f3e20cb8d2473be89c1fb1ed5d98cec3 (diff) | |
| download | enigma2-4b3b4e2e84cc265cc14bd3c4deb91e48a4e74c4f.tar.gz enigma2-4b3b4e2e84cc265cc14bd3c4deb91e48a4e74c4f.zip | |
use InfoBarTimeshiftState in infobar to display timeshift state
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/InfoBar.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py index ccd8c450..ae5318ec 100644 --- a/lib/python/Screens/InfoBar.py +++ b/lib/python/Screens/InfoBar.py @@ -17,7 +17,7 @@ from Screens.InfoBarGenerics import InfoBarShowHide, \ InfoBarAudioSelection, InfoBarAdditionalInfo, InfoBarNotifications, InfoBarDish, \ InfoBarSubserviceSelection, InfoBarTuner, InfoBarShowMovies, InfoBarTimeshift, \ InfoBarServiceNotifications, InfoBarPVRState, InfoBarCueSheetSupport, InfoBarSimpleEventView, \ - InfoBarSummarySupport + InfoBarSummarySupport, InfoBarTimeshiftState from Screens.HelpMenu import HelpableScreen, HelpMenu @@ -30,7 +30,7 @@ class InfoBar(InfoBarShowHide, InfoBarPowerKey, InfoBarEvent, InfoBarServiceName, InfoBarInstantRecord, InfoBarAudioSelection, HelpableScreen, InfoBarAdditionalInfo, InfoBarNotifications, InfoBarDish, InfoBarSubserviceSelection, InfoBarTuner, InfoBarTimeshift, InfoBarSeek, - InfoBarSummarySupport, Screen): + InfoBarSummarySupport, InfoBarTimeshiftState, Screen): def __init__(self, session): Screen.__init__(self, session) @@ -46,7 +46,7 @@ class InfoBar(InfoBarShowHide, InfoBarPowerKey, InfoBarNumberZap, InfoBarChannelSelection, InfoBarMenu, InfoBarEPG, \ InfoBarEvent, InfoBarServiceName, InfoBarInstantRecord, InfoBarAudioSelection, \ InfoBarAdditionalInfo, InfoBarNotifications, InfoBarDish, InfoBarSubserviceSelection, \ - InfoBarTuner, InfoBarTimeshift, InfoBarSeek, InfoBarSummarySupport: + InfoBarTuner, InfoBarTimeshift, InfoBarSeek, InfoBarSummarySupport, InfoBarTimeshiftState: x.__init__(self) self.helpList.append((self["actions"], "InfobarActions", [("showMovies", "Watch a Movie...")])) |
