Skip to content
This repository has been archived by the owner on Feb 24, 2023. It is now read-only.

Commit

Permalink
Counter now shows 0 and end frame
Browse files Browse the repository at this point in the history
  • Loading branch information
adamplouff committed Jun 20, 2019
2 parents 6d01038 + 5412a43 commit 7f70cf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InspectorSpacetime.jsx
Expand Up @@ -468,7 +468,7 @@ function getPropObj(opt_propObj) {
duration: prop.keyTime(selKeys[m+1]) - prop.keyTime(selKeys[m]),
} );
}
firstKeyTime = Math.min(firstKeyTime, propCollect[propCollect.length-1].startTime);
firstKeyTime = Math.min(firstKeyTime, propCollect[0].startTime); // set firstKeyTime to first keyframe's start time
lastKeyTime = Math.max(lastKeyTime, propCollect[propCollect.length-1].endTime);
}
}
Expand Down

0 comments on commit 7f70cf5

Please sign in to comment.