修复Mac下即使开启了托盘, `cmd+w` 仍会中断播放的问题(#1844)
parent
4760f79ab5
commit
09780d02e3
|
@ -12,6 +12,7 @@
|
|||
- 增大在线导入自定义源文件的大小限制问题(#1857)
|
||||
- 修复Mac下窗口出现残留阴影的问题,这解决了Mac下桌面歌词出现残留阴影的远古bug,感谢 @zclorne (#1869, Thanks @zclorne)
|
||||
- 增大在线导入自定义源文件的大小限制,解决某些音源无法导入的问题(#1857)
|
||||
- 修复Mac下即使开启了托盘, `cmd+w` 仍会中断播放的问题(#1844)
|
||||
|
||||
### 变更
|
||||
|
||||
|
|
|
@ -13,7 +13,13 @@ const winEvent = () => {
|
|||
if (!browserWindow) return
|
||||
|
||||
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)
|
||||
// global.lx.mainWindowClosed = true
|
||||
global.lx.event_app.main_window_close()
|
||||
|
|
Loading…
Reference in New Issue