diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-08-13 19:45:30 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-08-13 19:45:30 +0000 |
| commit | 245b038a7bb1abd05a50ffa680eba4d4b1134eb2 (patch) | |
| tree | f9defdbfa830b5ca77e2b79e3f4b77cfeb1dddc0 /lib/python/Components/Sources/List.py | |
| parent | 8bff76de9e1f83b77fd4ae2dc879362d967cc64d (diff) | |
| download | enigma2-245b038a7bb1abd05a50ffa680eba4d4b1134eb2.tar.gz enigma2-245b038a7bb1abd05a50ffa680eba4d4b1134eb2.zip | |
fix small bug
Diffstat (limited to 'lib/python/Components/Sources/List.py')
| -rw-r--r-- | lib/python/Components/Sources/List.py | 2 |
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""" |
