From: Stefan Pluecken Date: Tue, 15 Jul 2008 09:49:20 +0000 (+0000) Subject: disable instant record by pressing red button with new rcs X-Git-Tag: 2.6.0~1030 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/7c01e1138eaef94a506371c3eccf66329af39e9b disable instant record by pressing red button with new rcs --- diff --git a/data/keymap.xml b/data/keymap.xml index e83b851b..3f8e681d 100644 --- a/data/keymap.xml +++ b/data/keymap.xml @@ -89,7 +89,9 @@ - + + + diff --git a/data/skin.xml b/data/skin.xml index f1e25496..472994d3 100644 --- a/data/skin.xml +++ b/data/skin.xml @@ -184,7 +184,10 @@ - + + + + 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: