fix redraw-problem with NumericalTextInput in TimerEntry
[enigma2.git] / lib / python / Components / config.py
index 1486420c22d4f26cc927b84a9e5262b660affe50..724db4d675a517fbdb2a468a203611ad0bbe7384 100644 (file)
@@ -77,7 +77,7 @@ class configSelection:
                
                self.checkValues()                      
 
-               self.parent.change()    
+               self.parent.change()
 
        def __call__(self, selected):                   #needed by configlist
                self.checkValues()
@@ -291,8 +291,7 @@ class configText:
                self.parent.save()
                
        def nextEntry(self):
-               print "Next entry"
-               self.handleKey(config.key["nextElement"])
+               self.parent.vals[1]()
 
        def handleKey(self, key):
                #this will no change anything on the value itself
@@ -393,7 +392,7 @@ class configElement:
                                        tcnt = cnt
                        cnt += 1
                if tcnt != -1:
-                       return tcnt                     
+                       return tcnt
                return 0        #prevent bigger then array
 
        def datafromFile(self, control, data):
@@ -469,6 +468,10 @@ class configElement:
                self.notifierList = [ ]
                self.enabled = True
                self.loadData()         
+               
+       def getConfigPath(self):
+               return self.configPath
+       
        def addNotifier(self, notifier):
                self.notifierList.append(notifier);
                notifier(self);