Merge branch 'dango-testing' of https://github.com/Dangoware/dango-music-player into dango-testing

This commit is contained in:
MrDulfin 2025-06-06 05:29:59 -04:00
commit 7c2c0664ac
3 changed files with 449 additions and 443 deletions

5
.gitattributes vendored
View file

@ -1 +1,6 @@
* text=auto
* text eol=lf
*.png binary
*.ico binary
*.icns binary

View file

@ -311,6 +311,7 @@ function PlayBar({ playing, setPlaying }: PlayBarProps) {
};
const wheelVolume = (event: React.WheelEvent<HTMLDivElement>) => {
let x = volumeSlider.value;
if (event.deltaY < 0) {
volumeSlider.value++;
} else {