diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-07-30 20:20:34 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-07-30 20:20:34 +0000 |
| commit | d0f2817f1832e912282c886454e4f8112da56966 (patch) | |
| tree | c56e018b3f0281cc9d5d3695c3dffa8eace19034 /lib/python/Screens/InfoBar.py | |
| parent | 8cada4eb31be58a3fa3efa09afbf431b3b62ca08 (diff) | |
| download | enigma2-d0f2817f1832e912282c886454e4f8112da56966.tar.gz enigma2-d0f2817f1832e912282c886454e4f8112da56966.zip | |
allow standby only in InfoBar, MoviePlayer, Menus, Setup and Radiomode
Diffstat (limited to 'lib/python/Screens/InfoBar.py')
| -rw-r--r-- | lib/python/Screens/InfoBar.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py index 471b1abe..0a297fbf 100644 --- a/lib/python/Screens/InfoBar.py +++ b/lib/python/Screens/InfoBar.py @@ -34,6 +34,8 @@ class InfoBar(InfoBarShowHide, InfoBarSubserviceSelection, InfoBarTuner, InfoBarTimeshift, InfoBarSeek, InfoBarSummarySupport, InfoBarTimeshiftState, InfoBarTeletextPlugin, InfoBarExtensions, InfoBarSubtitleSupport, Screen): + + ALLOW_SUSPEND = True def __init__(self, session): Screen.__init__(self, session) @@ -84,6 +86,7 @@ class MoviePlayer(InfoBarShowHide, \ InfoBarSummarySupport, InfoBarTeletextPlugin, InfoBarSubtitleSupport, Screen): ENABLE_RESUME_SUPPORT = True + ALLOW_SUSPEND = True def __init__(self, session, service): Screen.__init__(self, session) |
