diff --git a/publish/changeLog.md b/publish/changeLog.md index cc15cddf..a9bb92b2 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -12,6 +12,7 @@ - 修复潜在播放暂停的问题 - 修复 kw 歌单详情出现打开失败的问题(#2317) - 修复 kg 热门评论无法获取的问题 +- 修复桌面歌词被遮挡时会被暂停的问题(#2320) ### 优化 diff --git a/src/main/modules/winLyric/main.ts b/src/main/modules/winLyric/main.ts index 68c5ed66..2b1faeb7 100644 --- a/src/main/modules/winLyric/main.ts +++ b/src/main/modules/winLyric/main.ts @@ -138,6 +138,7 @@ export const createWindow = () => { enableWebSQL: false, webgl: false, spellcheck: false, // 禁用拼写检查器 + backgroundThrottling: false, }, }) @@ -224,7 +225,7 @@ export const alwaysOnTopTools: AlwaysOnTopTools = { return } setAlwaysOnTop(true, 'screen-saver') - }, 1000) + }, 500) }, clearLoop() { if (!this.timeout) return