aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Converter/StringList.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-07-30 23:21:55 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-07-30 23:21:55 +0000
commitddb050fe8357a01b1fc52070ee9f87450c407c1c (patch)
tree39a1774f394d9651cc9a4bbf646ab852779cd7e0 /lib/python/Components/Converter/StringList.py
parent1557c715e461d5a7deb04bb008c6497441351bbe (diff)
downloadenigma2-ddb050fe8357a01b1fc52070ee9f87450c407c1c.tar.gz
enigma2-ddb050fe8357a01b1fc52070ee9f87450c407c1c.zip
suspend timers when all renders are hidden
Diffstat (limited to 'lib/python/Components/Converter/StringList.py')
-rw-r--r--lib/python/Components/Converter/StringList.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/Converter/StringList.py b/lib/python/Components/Converter/StringList.py
index d5421976..ed264651 100644
--- a/lib/python/Components/Converter/StringList.py
+++ b/lib/python/Components/Converter/StringList.py
@@ -7,11 +7,11 @@ class StringList(Converter):
def __init__(self, type):
Converter.__init__(self, type)
- def changed(self):
+ def changed(self, what):
self.content = eListboxPythonStringContent()
if self.source:
self.content.setList(self.source.list)
- self.downstream_elements.changed()
+ self.downstream_elements.changed(what)
def selectionChanged(self, index):
self.source.selectionChanged(index)