aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Converter/StringList.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-02-22 23:16:25 +0100
committerFelix Domke <tmbinc@elitedvb.net>2009-02-22 23:16:25 +0100
commit7a8ce89bacc1f2f6ff77409b9a879462daf09afe (patch)
treec07a98534262a4a8bb989d5ae3e34b7525f0c33e /lib/python/Components/Converter/StringList.py
parent8ae90fb361092e8bc95a269dfacdc695292e574b (diff)
downloadenigma2-7a8ce89bacc1f2f6ff77409b9a879462daf09afe.tar.gz
enigma2-7a8ce89bacc1f2f6ff77409b9a879462daf09afe.zip
fix entry_changed
Diffstat (limited to 'lib/python/Components/Converter/StringList.py')
-rw-r--r--lib/python/Components/Converter/StringList.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Components/Converter/StringList.py b/lib/python/Components/Converter/StringList.py
index 213f08bc..b21a7cf9 100644
--- a/lib/python/Components/Converter/StringList.py
+++ b/lib/python/Components/Converter/StringList.py
@@ -52,4 +52,5 @@ class StringList(Converter):
index = property(getIndex, setIndex)
def entry_changed(self, index):
- self.downstream_elements.entry_changed(index)
+ if self.content:
+ self.content.invalidateEntry(index)