From 95b7fab478d7ff7a4804e8595d4c56f9d46e91a9 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Tue, 29 Apr 2008 19:07:14 -0500 Subject: [PATCH] Fix capture alignment problem. --- Timeline/Transport.C | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Timeline/Transport.C b/Timeline/Transport.C index 9f33bf1..afe7a71 100644 --- a/Timeline/Transport.C +++ b/Timeline/Transport.C @@ -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