diff options
Diffstat (limited to 'lib/python/Components/Sources')
| -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""" |
