show hdd capacity in aboutbox
[enigma2.git] / lib / python / Components / InputDevice.py
index 599dff3483609cfa534ef0a6d2d98c382a6ded95..e6d5a882896e01c0ea413c7e97efd8a9a130a5e6 100644 (file)
@@ -9,16 +9,16 @@ class inputDevices:
        def __init__(self):
                pass
        def setRepeat(self, value):
-               print "setup rc repeat"
+               #print "setup rc repeat"
                pass
        def setDelay(self, value):
-               print "setup rc delay"
+               #print "setup rc delay"
                pass
 
 def InitInputDevices():
        config.inputDevices = ConfigSubsection();
-       config.inputDevices.repeat = configElement("config.inputDevices.repeat", ConfigSlider, 3);
-       config.inputDevices.delay = configElement("config.inputDevices.delay", ConfigSlider, 3);
+       config.inputDevices.repeat = configElement("config.inputDevices.repeat", ConfigSlider, 5, "");
+       config.inputDevices.delay = configElement("config.inputDevices.delay", ConfigSlider, 4, "");
 
        #this instance anywhere else needed?    
        iDevices = inputDevices();