修复Mac下即使开启了托盘, `cmd+w` 仍会中断播放的问题(#1844)

pull/1872/head
lyswhut 2024-04-28 18:59:09 +08:00
parent 4760f79ab5
commit 09780d02e3
2 changed files with 8 additions and 1 deletions

View File

@ -12,6 +12,7 @@
- 增大在线导入自定义源文件的大小限制问题(#1857 - 增大在线导入自定义源文件的大小限制问题(#1857
- 修复Mac下窗口出现残留阴影的问题这解决了Mac下桌面歌词出现残留阴影的远古bug感谢 @zclorne #1869, Thanks @zclorne - 修复Mac下窗口出现残留阴影的问题这解决了Mac下桌面歌词出现残留阴影的远古bug感谢 @zclorne #1869, Thanks @zclorne
- 增大在线导入自定义源文件的大小限制,解决某些音源无法导入的问题(#1857 - 增大在线导入自定义源文件的大小限制,解决某些音源无法导入的问题(#1857
- 修复Mac下即使开启了托盘 `cmd+w` 仍会中断播放的问题(#1844
### 变更 ### 变更

View File

@ -13,7 +13,13 @@ const winEvent = () => {
if (!browserWindow) return if (!browserWindow) return
browserWindow.on('close', event => { browserWindow.on('close', event => {
if (global.lx.isSkipTrayQuit || !global.lx.appSetting['tray.enable'] || (!isWin && !global.lx.isTrafficLightClose)) { if (
global.lx.isSkipTrayQuit ||
!global.lx.appSetting['tray.enable'] ||
// linux下如果不是点击软件上的关闭按钮退出的操作都直接退出
// https://github.com/lyswhut/lx-music-desktop/issues/191
(isLinux && !global.lx.isTrafficLightClose)
) {
browserWindow!.setProgressBar(-1) browserWindow!.setProgressBar(-1)
// global.lx.mainWindowClosed = true // global.lx.mainWindowClosed = true
global.lx.event_app.main_window_close() global.lx.event_app.main_window_close()