diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-04-03 15:36:35 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-04-03 15:36:35 +0000 |
| commit | ee6ee608040d130ded361d1342ef528c79a56c7b (patch) | |
| tree | c993dcb78e2eea8fa627dbcf6e0605361a2c114c /lib/python/Components | |
| parent | 8ed4d48a8dc5cf0a399ae147b34f845a15fb94d4 (diff) | |
| download | enigma2-ee6ee608040d130ded361d1342ef528c79a56c7b.tar.gz enigma2-ee6ee608040d130ded361d1342ef528c79a56c7b.zip | |
Implement "show infobar on event change"
enable/disable is possible in Usage Setup... default is on
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/UsageConfig.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Components/UsageConfig.py b/lib/python/Components/UsageConfig.py index 7a286da1..393dbbc4 100644 --- a/lib/python/Components/UsageConfig.py +++ b/lib/python/Components/UsageConfig.py @@ -14,6 +14,7 @@ def InitUsageConfig(): ("8", "8 " + _("seconds")), ("9", "9 " + _("seconds")), ("10", "10 " + _("seconds"))]) config.usage.show_infobar_on_zap = ConfigYesNo(default = True) config.usage.show_infobar_on_skip = ConfigYesNo(default = True) + config.usage.show_infobar_on_event_change = ConfigYesNo(default = True) config.usage.hdd_standby = ConfigSelection(default = "120", choices = [ ("0", _("no standby")), ("2", "10 " + _("seconds")), ("6", "30 " + _("seconds")), ("12", "1 " + _("minute")), ("24", "2 " + _("minutes")), |
