Fix capture alignment problem.
This commit is contained in:
parent
c99b2f1424
commit
95b7fab478
|
@ -45,21 +45,20 @@ void
|
||||||
Transport::start ( void )
|
Transport::start ( void )
|
||||||
{
|
{
|
||||||
// MESSAGE( "Starting transport" );
|
// MESSAGE( "Starting transport" );
|
||||||
jack_transport_start( client );
|
|
||||||
|
|
||||||
if ( _record_button->value() )
|
if ( _record_button->value() )
|
||||||
timeline->record();
|
timeline->record();
|
||||||
|
|
||||||
|
jack_transport_start( client );
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
Transport::stop ( void )
|
Transport::stop ( void )
|
||||||
{
|
{
|
||||||
// MESSAGE( "Stopping transport" );
|
// MESSAGE( "Stopping transport" );
|
||||||
jack_transport_stop( client );
|
|
||||||
|
|
||||||
if ( _record_button->value() )
|
if ( _record_button->value() )
|
||||||
timeline->stop();
|
timeline->stop();
|
||||||
|
|
||||||
|
jack_transport_stop( client );
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in New Issue