Do not display "More than half the audio will be faded..." warning if

"No Fade on Seque Out" box is checked.
This commit is contained in:
Patrick Linstruth 2018-10-16 07:58:02 -07:00
parent 4f3de819c9
commit 2c693a731a

View File

@ -2161,7 +2161,7 @@ bool RDEditAudio::SaveMarkers()
} }
} }
if(edit_cursors[RDEditAudio::SegueStart]!=-1) { if(edit_cursors[RDEditAudio::SegueStart]!=-1&&!edit_overlap_box->isChecked()) {
len=end_point-start_point; len=end_point-start_point;
start_point=(int)((double)(edit_cursors[RDEditAudio::SegueStart])* start_point=(int)((double)(edit_cursors[RDEditAudio::SegueStart])*
1152000.0/(double)edit_sample_rate); 1152000.0/(double)edit_sample_rate);