fixed keyframe save/load and goto next key

This commit is contained in:
itsmattkc
2019-01-02 22:43:35 +11:00
parent 37f21d2ff7
commit 215c784f8e
3 changed files with 20 additions and 13 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ void EffectRow::goto_next_key() {
for (int j=0;j<f->keyframes.size();j++) {
long comp = f->keyframes.at(i).time - c->clip_in + c->timeline_in;
if (comp > sequence->playhead) {
key = qMax(comp, key);
key = qMin(comp, key);
}
}
}