mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
Merge pull request #5764 from BigRoy/bugfix/validate_write_nodes_value
This commit is contained in:
commit
9c4d502096
1 changed files with 1 additions and 2 deletions
|
|
@ -111,7 +111,6 @@ class ValidateNukeWriteNode(
|
|||
for value in values:
|
||||
if type(node_value) in (int, float):
|
||||
try:
|
||||
|
||||
if isinstance(value, list):
|
||||
value = color_gui_to_int(value)
|
||||
else:
|
||||
|
|
@ -130,7 +129,7 @@ class ValidateNukeWriteNode(
|
|||
and key != "file"
|
||||
and key != "tile_color"
|
||||
):
|
||||
check.append([key, value, write_node[key].value()])
|
||||
check.append([key, node_value, write_node[key].value()])
|
||||
|
||||
if check:
|
||||
self._make_error(check)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue