|
@ -87,7 +87,7 @@ const PlayerBar = () => { |
|
|
} |
|
|
} |
|
|
settings.setSync('volume', localVolume); |
|
|
settings.setSync('volume', localVolume); |
|
|
} |
|
|
} |
|
|
setIsDragging(false); |
|
|
setIsDraggingVolume(false); |
|
|
}, 10); |
|
|
}, 10); |
|
|
|
|
|
|
|
|
return () => clearTimeout(debounce); |
|
|
return () => clearTimeout(debounce); |
|
@ -567,6 +567,7 @@ const PlayerBar = () => { |
|
|
progress |
|
|
progress |
|
|
defaultValue={0} |
|
|
defaultValue={0} |
|
|
value={isDragging ? manualSeek : seek} |
|
|
value={isDragging ? manualSeek : seek} |
|
|
|
|
|
$isDragging={isDragging} |
|
|
tooltip={false} |
|
|
tooltip={false} |
|
|
max={ |
|
|
max={ |
|
|
playQueue[currentEntryList][playQueue.currentIndex] |
|
|
playQueue[currentEntryList][playQueue.currentIndex] |
|
@ -721,6 +722,7 @@ const PlayerBar = () => { |
|
|
tabIndex={0} |
|
|
tabIndex={0} |
|
|
progress |
|
|
progress |
|
|
value={Math.floor(localVolume * 100)} |
|
|
value={Math.floor(localVolume * 100)} |
|
|
|
|
|
$isDragging={isDraggingVolume} |
|
|
tooltip={false} |
|
|
tooltip={false} |
|
|
style={{ width: '100px', marginRight: '10px' }} |
|
|
style={{ width: '100px', marginRight: '10px' }} |
|
|
onChange={handleVolumeSlider} |
|
|
onChange={handleVolumeSlider} |
|
|