fix bug with waveform

fixes #1416
pull/1255/head
Mikael Finstad 2023-01-09 12:43:16 +08:00
rodzic f1a9ea0e1d
commit d3c70e4788
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 25AB36E3E81CBC26
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -310,7 +310,7 @@ const Timeline = memo(({
</div>
{(waveformEnabled && !thumbnailsEnabled && !shouldShowWaveform) && (
<div style={{ position: 'absolute', display: 'flex', alignItems: 'center', justifyContent: 'center', height: timelineHeight, bottom: timelineHeight, left: 0, right: 0, color: 'rgba(255,255,255,0.6)' }}>
<div style={{ position: 'absolute', pointerEvents: 'none', display: 'flex', alignItems: 'center', justifyContent: 'center', height: timelineHeight, bottom: timelineHeight, left: 0, right: 0, color: 'rgba(255,255,255,0.6)' }}>
{t('Zoom in more to view waveform')}
</div>
)}