Use frameStartHandle since we only care about the saver during the publish frame range

This commit is contained in:
Roy Nieterau 2023-09-04 17:26:13 +02:00
parent 7a2cc22e6d
commit c3e299f9ad

View file

@ -96,7 +96,7 @@ class ValidateSaverResolution(
@classmethod
def get_resolution(cls, instance):
saver = instance.data["tool"]
first_frame = saver.GetAttrs("TOOLNT_Region_Start")[1]
first_frame = instance.data["frameStartHandle"]
return get_tool_resolution(saver, frame=first_frame)
@classmethod