diff options
author | Bastian Bloessl <mail@bastibl.net> | 2019-06-07 17:09:49 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-06-29 13:58:54 +0200 |
commit | 0fa281fd7369348dbdeadcecfebb20b73082e93e (patch) | |
tree | 63a176d74f0b10eae82de6578ea244cbf018a6c0 /grc/core/blocks/_flags.py | |
parent | 2ff628894b645d22325db6569fdccb265f57fbe1 (diff) |
grc: introduce flag 'show_id' to show block id
useful for variable and parameter blocks, but maybe others too
Diffstat (limited to 'grc/core/blocks/_flags.py')
-rw-r--r-- | grc/core/blocks/_flags.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/grc/core/blocks/_flags.py b/grc/core/blocks/_flags.py index 54052b59c5..c85232fceb 100644 --- a/grc/core/blocks/_flags.py +++ b/grc/core/blocks/_flags.py @@ -27,6 +27,7 @@ class Flags(object): NEED_QT_GUI = 'need_qt_gui' DEPRECATED = 'deprecated' NOT_DSP = 'not_dsp' + SHOW_ID = 'show_id' HAS_PYTHON = 'python' HAS_CPP = 'cpp' |