diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-08-13 19:51:46 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-08-13 19:51:46 +0000 |
| commit | d9b671360e525ffc2406b4becfb9bf600b07b662 (patch) | |
| tree | a8505f94cf07258f25d755fb4100fe389820b2d3 /lib/python/Components | |
| parent | 245b038a7bb1abd05a50ffa680eba4d4b1134eb2 (diff) | |
| download | enigma2-d9b671360e525ffc2406b4becfb9bf600b07b662.tar.gz enigma2-d9b671360e525ffc2406b4becfb9bf600b07b662.zip | |
2nd try ;)
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/Sources/List.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/Sources/List.py b/lib/python/Components/Sources/List.py index 791929a0..ef9c1c89 100644 --- a/lib/python/Components/Sources/List.py +++ b/lib/python/Components/Sources/List.py @@ -66,7 +66,7 @@ to generate HTML.""" self.index = 0 else: self.index += 1 - self.setIndex() + self.setIndex(self.index) def selectPrevious(self): if self.getIndex() - 1 < 0: @@ -74,7 +74,7 @@ to generate HTML.""" self.index = self.count() - 1 else: self.index -= 1 - self.setIndex() + self.setIndex(self.index) def updateList(self, list): """Changes the list without changing the selection or emitting changed Events""" |
