Skip to content

Commit

Permalink
[Processing] Fix setting of "multiline" setting for ParameterString
Browse files Browse the repository at this point in the history
  • Loading branch information
radosuav committed Sep 22, 2015
1 parent 3c93df5 commit 5211423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ def __init__(self, name='', description='', default='', multiline=False,
Parameter.__init__(self, name, description)
self.default = default
self.value = None
self.multiline = multiline
self.multiline = parseBool(multiline)
self.optional = parseBool(optional)

def setValue(self, obj):
Expand Down

0 comments on commit 5211423

Please sign in to comment.