Fix capture alignment problem.

This commit is contained in:
Jonathan Moore Liles 2008-04-29 19:07:14 -05:00
parent c99b2f1424
commit 95b7fab478
1 changed files with 3 additions and 4 deletions

View File

@ -45,21 +45,20 @@ void
Transport::start ( void )
{
// MESSAGE( "Starting transport" );
jack_transport_start( client );
if ( _record_button->value() )
timeline->record();
jack_transport_start( client );
}
void
Transport::stop ( void )
{
// MESSAGE( "Stopping transport" );
jack_transport_stop( client );
if ( _record_button->value() )
timeline->stop();
jack_transport_stop( client );
}
void