mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 00:38:41 +02:00
[core] support for non-exclusive choice params
This commit is contained in:
parent
977a6b1507
commit
76fad411a4
2 changed files with 9 additions and 3 deletions
|
@ -56,9 +56,10 @@ class FloatParam(Param):
|
|||
class ChoiceParam(Param):
|
||||
"""
|
||||
"""
|
||||
def __init__(self, label, description, value, values, exclusive, uid, group='allParams'):
|
||||
def __init__(self, label, description, value, values, exclusive, uid, group='allParams', joinChar=' '):
|
||||
self.values = values
|
||||
self.exclusive = exclusive
|
||||
self.joinChar = joinChar
|
||||
super(ChoiceParam, self).__init__(label=label, description=description, value=value, uid=uid, group=group)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue