If the user doesn't set the end time then when 'export audio' it should assume the audio is the last recorded track. Otherwise you get a wav file that is 0 seconds long.
it seems that the problem is caused by the end tick drawn over to the ExportWavDialog thus this can be easily solved by this code:
if (endTick == 0){ endTick = project.getEndTick(); }
how can i add new code here?
Log in to post a comment.
it seems that the problem is caused by the end tick drawn over to the ExportWavDialog thus this can be easily solved by this code:
if (endTick == 0){
endTick = project.getEndTick();
}
how can i add new code here?