X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/0e9ffe6bc88f7cec210e0416f36062eb0c7a3502..d4db62a3c940f3d9dabc97a55dd028b7f869047f:/lib/python/Components/config.py diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 9c7dcb29..c433f01b 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -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);