diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-05-07 13:32:45 +0200 |
---|---|---|
committer | Seth Hitefield <sdhitefield@gmail.com> | 2016-05-18 18:59:31 -0400 |
commit | c1231897581423b6402beaba02c2b22b3445925c (patch) | |
tree | ee3567b0d493c13c9855a8871d46824d51197aea /grc/core/Element.py | |
parent | d535ba24c44247630555d95efc9bde1696d555a4 (diff) |
grc: optionally hide all variable blocks
Diffstat (limited to 'grc/core/Element.py')
-rw-r--r-- | grc/core/Element.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/grc/core/Element.py b/grc/core/Element.py index b96edb0a72..67c36e12b4 100644 --- a/grc/core/Element.py +++ b/grc/core/Element.py @@ -100,6 +100,7 @@ class Element(object): is_flow_graph = False is_block = False + is_dummy_block = False is_connection = False @@ -107,3 +108,7 @@ class Element(object): is_port = False is_param = False + + is_variable = False + + is_import = False |