aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/AudioWaveform.tsx
diff options
context:
space:
mode:
authormehekj <mehek.jethani@gmail.com>2021-10-28 15:12:34 -0400
committermehekj <mehek.jethani@gmail.com>2021-10-28 15:12:34 -0400
commit7f08f0fec32a28e1dc19f00021f99352f55a045c (patch)
treea4f22a74ed74a72a763cbb69177ff2c8b535dbd1 /src/client/views/AudioWaveform.tsx
parent4c698f82b6407715d360a4fde539838dd12d4d1a (diff)
fixed marker document decorations on scroll in zoomed timeline
Diffstat (limited to 'src/client/views/AudioWaveform.tsx')
-rw-r--r--src/client/views/AudioWaveform.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/AudioWaveform.tsx b/src/client/views/AudioWaveform.tsx
index ca1dd6f36..58384792e 100644
--- a/src/client/views/AudioWaveform.tsx
+++ b/src/client/views/AudioWaveform.tsx
@@ -90,7 +90,7 @@ export class AudioWaveform extends React.Component<AudioWaveformProps> {
<Waveform
color={Colors.MEDIUM_BLUE}
height={this.waveHeight}
- barWidth={10.0 / this.audioBuckets.length}
+ barWidth={200.0 / this.audioBuckets.length}
pos={this.props.duration}
duration={this.props.duration}
peaks={this.audioBuckets}