diff options
Diffstat (limited to 'grc/core/FlowGraph.py')
-rw-r--r-- | grc/core/FlowGraph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/FlowGraph.py b/grc/core/FlowGraph.py index 3f21ec6a9c..8c59ec0bea 100644 --- a/grc/core/FlowGraph.py +++ b/grc/core/FlowGraph.py @@ -172,7 +172,7 @@ class FlowGraph(Element): return elements def children(self): - return itertools.chain(self.blocks, self.connections) + return itertools.chain(self.iter_enabled_blocks(), self.connections) def rewrite(self): """ |