aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-08-13 19:45:30 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-08-13 19:45:30 +0000
commit245b038a7bb1abd05a50ffa680eba4d4b1134eb2 (patch)
treef9defdbfa830b5ca77e2b79e3f4b77cfeb1dddc0 /lib
parent8bff76de9e1f83b77fd4ae2dc879362d967cc64d (diff)
downloadenigma2-245b038a7bb1abd05a50ffa680eba4d4b1134eb2.tar.gz
enigma2-245b038a7bb1abd05a50ffa680eba4d4b1134eb2.zip
fix small bug
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Components/Sources/List.py2
1 files changed, 2 insertions, 0 deletions
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"""