mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-06 10:18:42 +02:00
[core] Internal attributes: move "invalidation" before "comment"
This commit is contained in:
parent
835e396d8d
commit
3bc9445615
1 changed files with 9 additions and 10 deletions
|
@ -499,25 +499,24 @@ class Node(object):
|
||||||
packageName = ''
|
packageName = ''
|
||||||
packageVersion = ''
|
packageVersion = ''
|
||||||
internalInputs = [
|
internalInputs = [
|
||||||
StringParam(
|
|
||||||
name="comment",
|
|
||||||
label="Comments",
|
|
||||||
description="User comments describing this specific node instance.",
|
|
||||||
value="",
|
|
||||||
semantic="multiline",
|
|
||||||
uid=[],
|
|
||||||
),
|
|
||||||
StringParam(
|
StringParam(
|
||||||
name="invalidation",
|
name="invalidation",
|
||||||
label="Invalidation Message",
|
label="Invalidation Message",
|
||||||
description="A message that will invalidate the node's output folder.\n"
|
description="A message that will invalidate the node's output folder.\n"
|
||||||
"This is useful for development, we can invalidate\n"
|
"This is useful for development, we can invalidate the output of the node when we modify the code.\n"
|
||||||
"the output of the node when we modify the code.",
|
|
||||||
value="",
|
value="",
|
||||||
semantic="multiline",
|
semantic="multiline",
|
||||||
uid=[0],
|
uid=[0],
|
||||||
advanced=True,
|
advanced=True,
|
||||||
),
|
),
|
||||||
|
StringParam(
|
||||||
|
name="comment",
|
||||||
|
label="Comments",
|
||||||
|
description="User comments describing this specific node instance.\n"
|
||||||
|
value="",
|
||||||
|
semantic="multiline",
|
||||||
|
uid=[],
|
||||||
|
),
|
||||||
StringParam(
|
StringParam(
|
||||||
name="label",
|
name="label",
|
||||||
label="Node's Label",
|
label="Node's Label",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue