fix redraw-problem with NumericalTextInput in TimerEntry
[enigma2.git] / lib / python / Components / config.py
index 9c7dcb29fe114833292d3c2552df613b867c1bbf..724db4d675a517fbdb2a468a203611ad0bbe7384 100644 (file)
@@ -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
@@ -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);