Browse Source

Try to straighten out the sequence label issue.

tags/non-daw-v1.1.0
Jonathan Moore Liles 17 years ago
parent
commit
ba07b64e3d
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      Timeline/Track.C

+ 5
- 1
Timeline/Track.C View File

@@ -295,9 +295,11 @@ Track::add ( Sequence * t )
char pat[20];
snprintf( pat, sizeof( pat ), "%d", takes->children() );
t->name( strdup( pat ) );
take_menu->add( t->name() );
}

take_menu->add( t->name() );

t->labeltype( FL_ENGRAVED_LABEL );
}

void
@@ -329,6 +331,8 @@ Track::track ( Sequence * t )
_track = t;
pack->insert( *t, 0 );

t->labeltype( FL_NO_LABEL );

resize();
}



Loading…
Cancel
Save