Fixed a bug where the audio for a previous sample continued to play when the skip button was pressed.

pull/37/head
Chris Veilleux 2020-10-29 21:03:34 -05:00
parent 70ef94461c
commit 463e0f9278
1 changed files with 1 additions and 0 deletions

View File

@ -95,6 +95,7 @@ export class TagComponent implements OnInit {
}
skipToNextEvent(): void {
this.waveform.pause();
this.buttonsDisabled = true;
this.isTagged = true;
}