mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
Merge pull request #282 from ynput/bugfix/quick-fixes
Chore: Quick fixes
This commit is contained in:
commit
199ae5fe61
2 changed files with 3 additions and 3 deletions
|
|
@ -76,8 +76,8 @@ class SetFrameRangeWithHandlesLoader(load.LoaderPlugin):
|
||||||
return
|
return
|
||||||
|
|
||||||
# Include handles
|
# Include handles
|
||||||
start -= version_data.get("handleStart", 0)
|
start -= version_attributes.get("handleStart", 0)
|
||||||
end += version_data.get("handleEnd", 0)
|
end += version_attributes.get("handleEnd", 0)
|
||||||
|
|
||||||
hou.playbar.setFrameRange(start, end)
|
hou.playbar.setFrameRange(start, end)
|
||||||
hou.playbar.setPlaybackRange(start, end)
|
hou.playbar.setPlaybackRange(start, end)
|
||||||
|
|
|
||||||
|
|
@ -921,7 +921,7 @@ def writes_version_sync():
|
||||||
|
|
||||||
for each in nuke.allNodes(filter="Write"):
|
for each in nuke.allNodes(filter="Write"):
|
||||||
# check if the node is avalon tracked
|
# check if the node is avalon tracked
|
||||||
if _NODE_TAB_NAME not in each.knobs():
|
if NODE_TAB_NAME not in each.knobs():
|
||||||
continue
|
continue
|
||||||
|
|
||||||
avalon_knob_data = read_avalon_data(each)
|
avalon_knob_data = read_avalon_data(each)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue