修复 OpenAPI 的 `lyricLineAllText` 在切换到无歌词的音乐时内容没有更新的问题(#1925)

pull/1935/head
lyswhut 2024-06-04 18:42:52 +08:00
parent 435fec2f1c
commit 3c0daa2bf1
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
### 修复
- 修复 MacOS 下点击 dock 右键菜单的退出按钮时,程序没有退出的问题(#1923
- 修复 OpenAPI 的 `lyricLineAllText` 在切换到无歌词的音乐时内容没有更新的问题(#1925
### 变更
- 简化了应用退出行为,据测试,现在 linux 下若启用了托盘dock 右键菜单的 退出、关闭所有 之类的功能将不再退出程序,需改用托盘的退出按钮退出程序

View File

@ -46,12 +46,14 @@ export default () => {
picUrl: musicInfo.pic ?? '',
lyric: musicInfo.lrc ?? '',
lyricLineText: '',
lyricLineAllText: '',
})
}
const handleSetLyric = () => {
sendPlayerStatus({
lyric: musicInfo.lrc ?? '',
lyricLineText: '',
lyricLineAllText: '',
})
}
const handleSetPic = () => {