Timeline: Don't swap order of takes when reloading.
This commit is contained in:
parent
e0b9c34f45
commit
bae6e38504
|
@ -383,7 +383,7 @@ Track::log_children ( void ) const
|
||||||
for ( int i = 0; i < annotation->children(); i++ )
|
for ( int i = 0; i < annotation->children(); i++ )
|
||||||
((Sequence*)annotation->child( i ))->log_children();
|
((Sequence*)annotation->child( i ))->log_children();
|
||||||
|
|
||||||
for ( int i = 0; i < takes->children(); i++ )
|
for ( int i = takes->children(); i--; )
|
||||||
((Sequence*)takes->child( i ))->log_children();
|
((Sequence*)takes->child( i ))->log_children();
|
||||||
|
|
||||||
sequence()->log_children();
|
sequence()->log_children();
|
||||||
|
|
Loading…
Reference in New Issue