suspend timers when all renders are hidden
[enigma2.git] / lib / python / Components / Converter / StringList.py
index d542197684739588f4f488234d849f66c38a840c..ed2646519978415b1b14e02bdcd45f53ebe3781c 100644 (file)
@@ -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)