Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1916 from pypeclub/bugfix/nuke-load-mov
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubjezek001 authored Aug 10, 2021
2 parents af4237d + 3be9fa8 commit 75994f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openpype/hosts/nuke/plugins/load/load_mov.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,8 @@ def update(self, container, representation):
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:
Expand Down

0 comments on commit 75994f6

Please sign in to comment.