diff --git a/src/TrackPanel.cpp b/src/TrackPanel.cpp index 51715311d..d7cb24630 100644 --- a/src/TrackPanel.cpp +++ b/src/TrackPanel.cpp @@ -2005,7 +2005,7 @@ void TrackPanel::SelectionHandleClick(wxMouseEvent & event, //If we aren't currently playing back, start playing back at //the clicked point ControlToolBar * ctb = p->GetControlToolBar(); - ctb->SetPlay(true); + //ctb->SetPlay(true);// Not needed as done in PlayPlayRegion ctb->PlayPlayRegion(clicktime, endtime,false) ; } diff --git a/src/toolbars/ControlToolBar.cpp b/src/toolbars/ControlToolBar.cpp index 0ea38b45e..468b95a43 100644 --- a/src/toolbars/ControlToolBar.cpp +++ b/src/toolbars/ControlToolBar.cpp @@ -667,7 +667,7 @@ void ControlToolBar::OnKeyEvent(wxKeyEvent & event) StopPlaying(); } else if (!gAudioIO->IsBusy()) { - SetPlay(true);// Not needed as done in PlayPlayRegion + //SetPlay(true);// Not needed as done in PlayPlayRegion SetStop(false); PlayCurrentRegion(); }