add space
[enigma2.git] / lib / python / Components / UsageConfig.py
index 3df3a44206bccb984216ab0f48671248e95b0db5..269d5a2c61ab6e080207ae4f66ccf93e057bcc3b 100644 (file)
@@ -1,4 +1,4 @@
-from config import ConfigSubsection, ConfigYesNo, config, ConfigSelection, ConfigText, ConfigNumber, ConfigSet, ConfigNothing
+from config import ConfigSubsection, ConfigYesNo, config, ConfigSelection, ConfigText, ConfigNumber, ConfigSet
 from enigma import Misc_Options, setTunerTypePriorityOrder;
 from SystemInfo import SystemInfo
 import os
@@ -80,7 +80,7 @@ def InitUsageConfig():
        config.seek.selfdefined_79 = ConfigNumber(default=300)
 
        config.seek.speeds_forward = ConfigSet(default=[2, 4, 8, 16, 32, 64, 128], choices=[2, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128])
-       config.seek.speeds_backward = ConfigSet(default=[2, 4, 8, 16, 32, 64, 128], choices=[1, 2, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128])
+       config.seek.speeds_backward = ConfigSet(default=[8, 16, 32, 64, 128], choices=[1, 2, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128])
        config.seek.speeds_slowmotion = ConfigSet(default=[2, 4, 8], choices=[2, 4, 6, 8, 12, 16, 25])
 
        config.seek.enter_forward = ConfigSelection(default = "2", choices = ["2"])
@@ -109,14 +109,13 @@ def InitUsageConfig():
 
 def updateChoices(sel, choices):
        if choices:
-                defval = None
-                val = int(sel.value)
+               defval = None
+               val = int(sel.value)
                if not val in choices:
-                        tmp = choices+[]
-                        tmp.reverse()
-                        for x in tmp:
-                                if x < val:
-                                        defval = str(x)
-                                        break
+                       tmp = choices+[]
+                       tmp.reverse()
+                       for x in tmp:
+                               if x < val:
+                                       defval = str(x)
+                                       break
                sel.setChoices(map(str, choices), defval)
-