mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix(nks): handles was taken from wrong attribute
This commit is contained in:
parent
8db7c19e74
commit
2d1bd6227f
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