set default standby-brightness to 0
[enigma2.git] / lib / python / Components / config.py
index 9c7dcb29fe114833292d3c2552df613b867c1bbf..c433f01bb47b619240f9c5ce767457fa0861fbd0 100644 (file)
@@ -291,8 +291,8 @@ class configText:
                self.parent.save()
                
        def nextEntry(self):
-               print "Next entry"
-               self.handleKey(config.key["nextElement"])
+               print self.parent
+               self.parent.vals[1](self.parent.getConfigPath())
 
        def handleKey(self, key):
                #this will no change anything on the value itself
@@ -469,6 +469,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);