X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FComponents%2FSources%2FList.py;h=791929a0a66d3dd436ce2b67a04dda0266f1492e;hp=89e1e71c123be81e681ccb1bb65622511c394f10;hb=245b038a7bb1abd05a50ffa680eba4d4b1134eb2;hpb=8bff76de9e1f83b77fd4ae2dc879362d967cc64d diff --git a/lib/python/Components/Sources/List.py b/lib/python/Components/Sources/List.py index 89e1e71..791929a 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"""