many fixes and ripple edit corrections

This commit is contained in:
itsmattkc
2018-07-22 17:59:03 +01:00
parent ce4d7fda60
commit 6109ed9002
22 changed files with 400 additions and 181 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ Sequence* Sequence::copy() {
for (int i=0;i<clip_count();i++) {
Clip* c = get_clip(i);
if (c != NULL) {
Clip* copy = c->copy();
Clip* copy = c->copy(s);
copy->linked = c->linked;
s->add_clip(copy);
}