Fix first waveform bar highlighting in playback at 0%

pull/21833/head
Travis Ralston 2021-04-27 23:34:26 -06:00
parent f0ff2fc38d
commit 8213c48b7f
1 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,8 @@ export default class PlaybackWaveform extends React.PureComponent<IProps, IState
};
private onTimeUpdate = (time: number[]) => {
const progress = percentageOf(time[0], 0, time[1]);
// Track percentages to very coarse precision, otherwise 0.002 ends up highlighting a bar.
const progress = Number(percentageOf(time[0], 0, time[1]).toFixed(1));
this.setState({progress});
};