Skip to content

Commit

Permalink
works!
Browse files Browse the repository at this point in the history
  • Loading branch information
rectalogic committed Jan 6, 2024
1 parent 7aefce5 commit f0c4a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MediaFX/qml/sequence.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function onClipCurrentTimeChanged() {
var clip = root.mediaClips[internal.currentClipIndex];
if (internal.mixInterval.contains(clip.clipCurrentTime.start)) {
internal.state = "mixer";
root.mediaMixers[internal.currentMixerIndex].time = internal.mixInterval.duration / (clip.clipCurrentTime.start - internal.mixInterval.start);
root.mediaMixers[internal.currentMixerIndex].time = (clip.clipCurrentTime.start - internal.mixInterval.start) / internal.mixInterval.duration;
}
};

Expand Down

0 comments on commit f0c4a7b

Please sign in to comment.