mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 14:37:06 +01:00
horizontal scroll
This commit is contained in:
parent
b3b810c62c
commit
a89b6640a9
@ -100,7 +100,7 @@ export const useRightControls = () => {
|
|||||||
const handleVolumeWheel = useCallback(
|
const handleVolumeWheel = useCallback(
|
||||||
(e: WheelEvent<HTMLDivElement | HTMLButtonElement>) => {
|
(e: WheelEvent<HTMLDivElement | HTMLButtonElement>) => {
|
||||||
let volumeToSet;
|
let volumeToSet;
|
||||||
if (e.deltaY > 0) {
|
if (e.deltaY > 0 || e.deltaX > 0) {
|
||||||
volumeToSet = calculateVolumeDown(volume, volumeWheelStep);
|
volumeToSet = calculateVolumeDown(volume, volumeWheelStep);
|
||||||
} else {
|
} else {
|
||||||
volumeToSet = calculateVolumeUp(volume, volumeWheelStep);
|
volumeToSet = calculateVolumeUp(volume, volumeWheelStep);
|
||||||
|
Loading…
Reference in New Issue
Block a user