mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 13:24:54 +01:00
Merged in bugfix/PYPE-686-nks-publish-handles-issue (pull request #462)
fix(nks): handles was taken from wrong attribute Approved-by: Milan Kolar <milan@orbi.tools>
This commit is contained in:
commit
7c24eff14b
1 changed files with 2 additions and 2 deletions
|
|
@ -106,8 +106,8 @@ class CollectClips(api.ContextPlugin):
|
|||
"family": "clip",
|
||||
"families": [],
|
||||
"handles": 0,
|
||||
"handleStart": projectdata.get("handles", 0),
|
||||
"handleEnd": projectdata.get("handles", 0),
|
||||
"handleStart": projectdata.get("handleStart", 0),
|
||||
"handleEnd": projectdata.get("handleEnd", 0),
|
||||
"version": int(version)})
|
||||
|
||||
instance = context.create_instance(**data)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue