Browse Source

Fix capture alignment problem.

tags/non-daw-v1.1.0
Jonathan Moore Liles 17 years ago
parent
commit
95b7fab478
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      Timeline/Transport.C

+ 3
- 4
Timeline/Transport.C 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


Loading…
Cancel
Save