make it compatible to smaller screens, even if it need 2 bytes more
[enigma2.git] / lib / python / Components / config.py
index a28c40ca6500d9b51ea426af35598fbafe974985..b5a767a23c13b9635e3a81720a8bc8dfbef4b2a0 100644 (file)
@@ -106,7 +106,7 @@ class configDateTime:
                if key == config.key["nextElement"]:
                        self.parent.value = self.parent.value + self.parent.vals[1]
                
-               self.checkValues()                      
+               self.checkValues()
 
                self.parent.change()    
 
@@ -154,6 +154,9 @@ class configSequenceArg:
                # configsequencearg.get ("MAC")
                if (type == "MAC"):
                        return ((":"), [(1,255),(1,255),(1,255),(1,255),(1,255),(1,255)], "")
+               # configsequencearg.get ("CLOCK")
+               if (type == "CLOCK"):
+                       return ((":"), [(0,23),(0,59)], "")
                # configsequencearg.get("INTEGER", (min, max)) => x with min <= x <= max
                if (type == "INTEGER"):
                        return ((":"), [args], "")
@@ -427,5 +430,3 @@ def getConfigListEntry(description, element):
        b = element
        item = b.controlType(b)
        return ((description, item))
-
-       
\ No newline at end of file