Browse Source

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

tags/non-daw-v1.2.0
Jonathan Moore Liles 13 years ago
parent
commit
bae6e38504
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      timeline/src/Track.C

+ 1
- 1
timeline/src/Track.C 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();


Loading…
Cancel
Save