mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-10 04:30:25 +02:00
fix: stop volume slider clicks from opening full screen (#1585)
* fix volume slider clicks from opening full screen
This commit is contained in:
@@ -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}
|
||||||
|
|||||||
Reference in New Issue
Block a user