Merge pull request #282 from ynput/bugfix/quick-fixes

Chore: Quick fixes
This commit is contained in:
Jakub Trllo 2024-03-27 12:31:38 +01:00 committed by GitHub
commit 199ae5fe61
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -76,8 +76,8 @@ class SetFrameRangeWithHandlesLoader(load.LoaderPlugin):
return
# Include handles
start -= version_data.get("handleStart", 0)
end += version_data.get("handleEnd", 0)
start -= version_attributes.get("handleStart", 0)
end += version_attributes.get("handleEnd", 0)
hou.playbar.setFrameRange(start, end)
hou.playbar.setPlaybackRange(start, end)

View file

@ -921,7 +921,7 @@ def writes_version_sync():
for each in nuke.allNodes(filter="Write"):
# check if the node is avalon tracked
if _NODE_TAB_NAME not in each.knobs():
if NODE_TAB_NAME not in each.knobs():
continue
avalon_knob_data = read_avalon_data(each)