fix: stop volume slider clicks from opening full screen (#1585)

* fix volume slider clicks from opening full screen
This commit is contained in:
jay
2026-01-22 09:01:06 +00:00
committed by GitHub
parent 0c1537e5ef
commit 39d691d528
@@ -448,6 +448,9 @@ const VolumeButton = () => {
max={100} max={100}
min={0} min={0}
onChange={handleVolumeSlider} onChange={handleVolumeSlider}
onClick={(e) => {
e.stopPropagation();
}}
onWheel={handleVolumeWheel} onWheel={handleVolumeWheel}
size={6} size={6}
value={sliderValue} value={sliderValue}