diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2009-02-22 23:16:25 +0100 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2009-02-22 23:16:25 +0100 |
| commit | 7a8ce89bacc1f2f6ff77409b9a879462daf09afe (patch) | |
| tree | c07a98534262a4a8bb989d5ae3e34b7525f0c33e /lib/python/Components/Sources/List.py | |
| parent | 8ae90fb361092e8bc95a269dfacdc695292e574b (diff) | |
| download | enigma2-7a8ce89bacc1f2f6ff77409b9a879462daf09afe.tar.gz enigma2-7a8ce89bacc1f2f6ff77409b9a879462daf09afe.zip | |
fix entry_changed
Diffstat (limited to 'lib/python/Components/Sources/List.py')
| -rw-r--r-- | lib/python/Components/Sources/List.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Sources/List.py b/lib/python/Components/Sources/List.py index dbe442d1..1eab32b2 100644 --- a/lib/python/Components/Sources/List.py +++ b/lib/python/Components/Sources/List.py @@ -27,7 +27,7 @@ to generate HTML.""" def entry_changed(self, index): if not self.disable_callbacks: - self.downstream_elements.entry_changed(self, index) + self.downstream_elements.entry_changed(index) def modifyEntry(self, index, data): self.__list[index] = data |
