From ddb050fe8357a01b1fc52070ee9f87450c407c1c Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Sun, 30 Jul 2006 23:21:55 +0000 Subject: suspend timers when all renders are hidden --- lib/python/Components/Converter/StringList.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/python/Components/Converter/StringList.py') 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) -- cgit v1.2.3