From 021e6305dcb355c57b5c5cd7727a52134bdb9e6d Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Thu, 28 Jan 2021 13:04:53 +0100 Subject: [PATCH] fix nuke: loader was not updating file knob on read --- pype/hosts/nuke/plugins/load/load_image.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pype/hosts/nuke/plugins/load/load_image.py b/pype/hosts/nuke/plugins/load/load_image.py index ac54a90bc0..dcaf31c9e3 100644 --- a/pype/hosts/nuke/plugins/load/load_image.py +++ b/pype/hosts/nuke/plugins/load/load_image.py @@ -186,6 +186,7 @@ class LoadImage(api.Loader): last = first = int(frame_number) # Set the global in to the start frame of the sequence + node["file"].setValue(file) node["origfirst"].setValue(first) node["first"].setValue(first) node["origlast"].setValue(last)