aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/Element.py4
1 files changed, 2 insertions, 2 deletions
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)