X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ad849952739d402553830c5ff080ac9a3edb3f4e..3ff1dc8555e0bf219e47ed002ea7b66a59bdaeb7:/lib/python/Components/config.py diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index f2d45ef8..1486420c 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -298,13 +298,17 @@ class configText: #this will no change anything on the value itself #so we can handle it here in gui element if key == config.key["prevElement"]: + self.textInput.nextKey() self.markedPos -= 1 + if key == config.key["nextElement"]: + self.textInput.nextKey() self.markedPos += 1 if (self.mode == self.extendableSize): if (self.markedPos >= len(self.parent.value)): self.parent.value = self.parent.value.ljust(len(self.parent.value) + 1) - + + if key >= config.key["0"] and key <= config.key["9"]: number = 9 - config.key["9"] + key