diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2015-08-20 14:01:04 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2015-11-06 16:12:28 +0100 |
commit | 8b14a84ef8b8a73db002153cb398f79f1343ebc2 (patch) | |
tree | 039582daad614ac2fa9c5977563a79b2b643f484 /grc/gui | |
parent | 91b66420516948019a6f0b8fe34630d2e119da96 (diff) |
grc: mark param type multiline as protected
Diffstat (limited to 'grc/gui')
-rw-r--r-- | grc/gui/Param.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/Param.py b/grc/gui/Param.py index ca0a8c60e5..ec4f7d5f94 100644 --- a/grc/gui/Param.py +++ b/grc/gui/Param.py @@ -320,7 +320,7 @@ class Param(Element): elif self.get_options(): input_widget = EnumEntryParam(self, *args, **kwargs) - elif self.get_type() == 'multiline': + elif self.get_type() == '_multiline': input_widget = MultiLineEntryParam(self, *args, **kwargs) else: |