Merge pull request #1916 from pypeclub/bugfix/nuke-load-mov

This commit is contained in:
Jakub Ježek 2021-08-10 15:27:12 +02:00 committed by GitHub
commit 75994f6f57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -259,7 +259,8 @@ class LoadMov(api.Loader):
read_node["last"].setValue(last)
read_node['frame_mode'].setValue("start at")
if int(self.first_frame) == int(read_node['frame'].value()):
if int(float(self.first_frame)) == int(
float(read_node['frame'].value())):
# start at workfile start
read_node['frame'].setValue(str(self.first_frame))
else: