Skip to content

Commit

Permalink
fix fatal bug in cueParser
Browse files Browse the repository at this point in the history
  • Loading branch information
imzlh committed Jul 20, 2024
1 parent f9cd8d0 commit d35e9c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/opener/vplayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -234,11 +234,11 @@
break;
case 'ArrowUp':
CFG.volume = CFG.volume < .1 ? 0 : CFG.volume - .1;
CFG.volume = CFG.volume > .9 ? 1 : CFG.volume + .1;
break;
case 'ArrowDown':
CFG.volume = CFG.volume > .9 ? 1 : CFG.volume + .1;
CFG.volume = CFG.volume < .1 ? 0 : CFG.volume - .1;
break;
case ' ':
Expand Down

0 comments on commit d35e9c1

Please sign in to comment.