Fix capture alignment problem.
This commit is contained in:
parent
c99b2f1424
commit
95b7fab478
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue