From: Felix Domke Date: Mon, 10 Jul 2006 16:21:24 +0000 (+0000) Subject: handle additional arguments for 'changed' X-Git-Tag: 2.6.0~3202 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/732961ea798182d334d26e2fa2ce8d91672a932f handle additional arguments for 'changed' --- diff --git a/lib/python/Components/Element.py b/lib/python/Components/Element.py index fc709139..5b8bed86 100644 --- a/lib/python/Components/Element.py +++ b/lib/python/Components/Element.py @@ -44,5 +44,5 @@ class Element: self.disconnectAll() # default action: push downstream - def changed(self): - self.downstream_elements.changed() + def changed(self, *args, **kwargs): + self.downstream_elements.changed(*args, **kwargs)