修复启用透明窗口鼠标不穿透的bug
parent
1f8b632d95
commit
c85a036ac6
|
@ -1,8 +1,3 @@
|
|||
洛雪提前祝大家新年快乐、身体健康、阖家幸福!
|
||||
|
||||
### 修复
|
||||
|
||||
- 修复歌曲下载列表无法加载的问题
|
||||
- 修复歌曲下载任务数大于最大下载任务数的问题
|
||||
- 修复某些情况下歌曲下载错误的问题
|
||||
- 修复下载列表数据没有被迁移直接被丢弃的问题
|
||||
- 修复启用透明窗口鼠标不穿透的bug
|
||||
|
|
|
@ -184,12 +184,12 @@ export default {
|
|||
music.init()
|
||||
},
|
||||
enableIgnoreMouseEvents() {
|
||||
if (!this.isNt) return
|
||||
if (this.isNt) return
|
||||
rendererSend('setIgnoreMouseEvents', false)
|
||||
// console.log('content enable')
|
||||
},
|
||||
dieableIgnoreMouseEvents() {
|
||||
if (!this.isNt) return
|
||||
if (this.isNt) return
|
||||
// console.log('content disable')
|
||||
rendererSend('setIgnoreMouseEvents', true)
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue