Timeline: Don't swap order of takes when reloading.

pull/3/head
Jonathan Moore Liles 2012-12-10 21:31:25 -08:00
parent e0b9c34f45
commit bae6e38504
1 changed files with 1 additions and 1 deletions

View File

@ -383,7 +383,7 @@ Track::log_children ( void ) const
for ( int i = 0; i < annotation->children(); i++ )
((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()->log_children();