X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/8bff76de9e1f83b77fd4ae2dc879362d967cc64d..245b038a7bb1abd05a50ffa680eba4d4b1134eb2:/lib/python/Components/Sources/List.py diff --git a/lib/python/Components/Sources/List.py b/lib/python/Components/Sources/List.py index 89e1e71c..791929a0 100644 --- a/lib/python/Components/Sources/List.py +++ b/lib/python/Components/Sources/List.py @@ -66,6 +66,7 @@ to generate HTML.""" self.index = 0 else: self.index += 1 + self.setIndex() def selectPrevious(self): if self.getIndex() - 1 < 0: @@ -73,6 +74,7 @@ to generate HTML.""" self.index = self.count() - 1 else: self.index -= 1 + self.setIndex() def updateList(self, list): """Changes the list without changing the selection or emitting changed Events"""