mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 18:27:23 +02:00
[bin] meshroom_newNodeType
: Replace uid=
with invalidate=
This commit is contained in:
parent
71d06d27ec
commit
e5ac6bd0dc
1 changed files with 7 additions and 7 deletions
|
@ -178,7 +178,7 @@ for cmdLineArg in cmdLineArgs:
|
||||||
isOutput = 'output' in cmdLineArgLower or 'out' in namesLower
|
isOutput = 'output' in cmdLineArgLower or 'out' in namesLower
|
||||||
isInt = is_int(value)
|
isInt = is_int(value)
|
||||||
isFloat = is_float(value)
|
isFloat = is_float(value)
|
||||||
uid = '[]' if isOutput else '[0]'
|
uid = False if isOutput else True
|
||||||
|
|
||||||
argStr = None
|
argStr = None
|
||||||
if isBool:
|
if isBool:
|
||||||
|
@ -188,7 +188,7 @@ for cmdLineArg in cmdLineArgs:
|
||||||
label='{label}',
|
label='{label}',
|
||||||
description='''{description}''',
|
description='''{description}''',
|
||||||
value={value},
|
value={value},
|
||||||
uid={uid},
|
invalidate={uid},
|
||||||
),""".format(
|
),""".format(
|
||||||
name=longName,
|
name=longName,
|
||||||
label=convertToLabel(longName),
|
label=convertToLabel(longName),
|
||||||
|
@ -204,7 +204,7 @@ for cmdLineArg in cmdLineArgs:
|
||||||
label='{label}',
|
label='{label}',
|
||||||
description='''{description}''',
|
description='''{description}''',
|
||||||
value={value},
|
value={value},
|
||||||
uid={uid},
|
invalidate={uid},
|
||||||
),""".format(
|
),""".format(
|
||||||
name=longName,
|
name=longName,
|
||||||
label=convertToLabel(longName),
|
label=convertToLabel(longName),
|
||||||
|
@ -222,7 +222,7 @@ for cmdLineArg in cmdLineArgs:
|
||||||
value={value},
|
value={value},
|
||||||
values={values},
|
values={values},
|
||||||
exclusive={exclusive},
|
exclusive={exclusive},
|
||||||
uid={uid},
|
invalidate={uid},
|
||||||
),""".format(
|
),""".format(
|
||||||
name=longName,
|
name=longName,
|
||||||
label=convertToLabel(longName),
|
label=convertToLabel(longName),
|
||||||
|
@ -240,7 +240,7 @@ for cmdLineArg in cmdLineArgs:
|
||||||
description='''{description}''',
|
description='''{description}''',
|
||||||
value={value},
|
value={value},
|
||||||
range={range},
|
range={range},
|
||||||
uid={uid},
|
invalidate={uid},
|
||||||
),""".format(
|
),""".format(
|
||||||
name=longName,
|
name=longName,
|
||||||
label=convertToLabel(longName),
|
label=convertToLabel(longName),
|
||||||
|
@ -257,7 +257,7 @@ for cmdLineArg in cmdLineArgs:
|
||||||
description='''{description}''',
|
description='''{description}''',
|
||||||
value={value},
|
value={value},
|
||||||
range={range},
|
range={range},
|
||||||
uid={uid},
|
invalidate={uid},
|
||||||
),""".format(
|
),""".format(
|
||||||
name=longName,
|
name=longName,
|
||||||
label=convertToLabel(longName),
|
label=convertToLabel(longName),
|
||||||
|
@ -273,7 +273,7 @@ for cmdLineArg in cmdLineArgs:
|
||||||
label='{label}',
|
label='{label}',
|
||||||
description='''{description}''',
|
description='''{description}''',
|
||||||
value={value},
|
value={value},
|
||||||
uid={uid},
|
invalidate={uid},
|
||||||
),""".format(
|
),""".format(
|
||||||
name=longName,
|
name=longName,
|
||||||
label=convertToLabel(longName),
|
label=convertToLabel(longName),
|
||||||
|
|
Loading…
Add table
Reference in a new issue