mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-02 08:18:25 +02:00
[nodes] Update of values from tuple to list for ChoiceParam
Update of values from tuple to list for ChoiceParam to be consistent everywhere. Before it was not a problem but because of dynamic choices we expect it to be editable list.
This commit is contained in:
parent
498fd6cbd2
commit
5dd13b0445
9 changed files with 14 additions and 14 deletions
|
@ -212,7 +212,7 @@ A Graph Cut Max-Flow is applied to optimally cut the volume. This cut represents
|
|||
label="Partitioning",
|
||||
description="Single block or auto partitioning.",
|
||||
value="singleBlock",
|
||||
values=("singleBlock", "auto"),
|
||||
values=["singleBlock", "auto"],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
|
@ -222,7 +222,7 @@ A Graph Cut Max-Flow is applied to optimally cut the volume. This cut represents
|
|||
label="Repartition",
|
||||
description="Multi-resolution or regular grid-based repartition.",
|
||||
value="multiResolution",
|
||||
values=("multiResolution", "regularGrid"),
|
||||
values=["multiResolution", "regularGrid"],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue