diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-07-15 09:49:20 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-07-15 09:49:20 +0000 |
| commit | 7c01e1138eaef94a506371c3eccf66329af39e9b (patch) | |
| tree | dbed9879a0b98fe4a7e844eeed3faca2ea862539 /lib/python/Screens | |
| parent | 13e3018673a588fe5225bc1c3fe893593a9eadb3 (diff) | |
| download | enigma2-7c01e1138eaef94a506371c3eccf66329af39e9b.tar.gz enigma2-7c01e1138eaef94a506371c3eccf66329af39e9b.zip | |
disable instant record by pressing red button with new rcs
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 718c2d54..428ecbc5 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -1731,10 +1731,11 @@ class InfoBarSubserviceSelection: class InfoBarAdditionalInfo: def __init__(self): - self["RecordingPossible"] = Boolean(fixed=harddiskmanager.HDDCount() > 0) - self["TimeshiftPossible"] = Boolean(fixed=(harddiskmanager.HDDCount() > 0 and config.misc.rcused.value == 1)) + self["RecordingPossible"] = Boolean(fixed=harddiskmanager.HDDCount() > 0 and config.misc.rcused.value == 1) + self["TimeshiftPossible"] = self["RecordingPossible"] self["ShowTimeshiftOnYellow"] = Boolean(fixed=(not config.misc.rcused.value == 0)) self["ShowAudioOnYellow"] = Boolean(fixed=config.misc.rcused.value == 0) + self["ShowRecordOnRed"] = Boolean(fixed=config.misc.rcused.value == 1) self["ExtensionsAvailable"] = Boolean(fixed=1) class InfoBarNotifications: |
