diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-02-03 21:30:49 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-02-03 21:30:49 +0000 |
| commit | 1963e01e7ffb86fe0e6942d3630222eddf1ebc67 (patch) | |
| tree | bfd9f36075fdc822bcc92a91e3b56596650bba29 /lib | |
| parent | 0a23feb1aebe448bd4b063a5fa1253ac40a40503 (diff) | |
| download | enigma2-1963e01e7ffb86fe0e6942d3630222eddf1ebc67.tar.gz enigma2-1963e01e7ffb86fe0e6942d3630222eddf1ebc67.zip | |
add record margin
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Components/RecordingConfig.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/RecordingConfig.py b/lib/python/Components/RecordingConfig.py index 99c15a66..1353f18a 100644 --- a/lib/python/Components/RecordingConfig.py +++ b/lib/python/Components/RecordingConfig.py @@ -4,6 +4,6 @@ from enigma import * def InitRecordingConfig(): config.recording = ConfigSubsection(); - config.recording.asktozap = configElement("config.recording.asktozap", configSelection, 1, (("yes", _("yes")), ("no", _("no"))) ); - - + config.recording.asktozap = configElement("config.recording.asktozap", configSelection, 1, (("yes", _("yes")), ("no", _("no"))) ) + config.recording.margin_before = configElement("config.recording.margin_before", configSequence, [0], configsequencearg.get("INTEGER", (0, 30))) + config.recording.margin_after = configElement("config.recording.margin_after", configSequence, [0], configsequencearg.get("INTEGER", (0, 30))) |
