快捷键调整音量时每次加减2%音量改为4%
This commit is contained in:
parent
cb4ab411f9
commit
20294233e6
@ -6,6 +6,7 @@
|
||||
### 优化
|
||||
|
||||
- 支持wy源flac hires歌曲类型的显示
|
||||
- 快捷键调整音量时每次加减2%音量改为4%(#1220)
|
||||
|
||||
### 修复
|
||||
|
||||
|
||||
@ -26,10 +26,10 @@ export default () => {
|
||||
setVolume(_volume)
|
||||
}
|
||||
|
||||
const handleSetVolumeUp = (step = 0.02) => {
|
||||
const handleSetVolumeUp = (step = 0.04) => {
|
||||
handleSetVolume(volume.value + step)
|
||||
}
|
||||
const handleSetVolumeDown = (step = 0.02) => {
|
||||
const handleSetVolumeDown = (step = 0.04) => {
|
||||
handleSetVolume(volume.value - step)
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user