X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/2c9a0e18d4ad0b5a73abb5466ea2f70b61daf7fa..cd3cd96e2ff4c6e6a9a38393e4d93167d30f74ea:/lib/python/Components/Sources/List.py diff --git a/lib/python/Components/Sources/List.py b/lib/python/Components/Sources/List.py index 26c68ab5..23b53957 100644 --- a/lib/python/Components/Sources/List.py +++ b/lib/python/Components/Sources/List.py @@ -28,7 +28,11 @@ to generate HTML.""" def entry_changed(self, index): if not self.disable_callbacks: self.downstream_elements.entry_changed(self, index) - + + def modifyEntry(self, index, data): + self.__list[index] = data + self.entry_changed(index) + def count(self): return len(self.__list)