Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rectalogic committed Jan 6, 2024
1 parent cd8dbc1 commit 7aefce5
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 @@ -27,7 +27,7 @@ function onClipEnded() {

function onClipCurrentTimeChanged() {
var clip = root.mediaClips[internal.currentClipIndex];
if (internal.mixInterval.contains(clip.clipCurrentTime)) {
if (internal.mixInterval.contains(clip.clipCurrentTime.start)) {
internal.state = "mixer";
root.mediaMixers[internal.currentMixerIndex].time = internal.mixInterval.duration / (clip.clipCurrentTime.start - internal.mixInterval.start);
}
Expand Down

0 comments on commit 7aefce5

Please sign in to comment.