From c85a036ac6d38f79ea44cf76fa58b139ea8a413b Mon Sep 17 00:00:00 2001 From: lyswhut Date: Tue, 28 Jan 2020 12:38:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=90=AF=E7=94=A8=E9=80=8F?= =?UTF-8?q?=E6=98=8E=E7=AA=97=E5=8F=A3=E9=BC=A0=E6=A0=87=E4=B8=8D=E7=A9=BF?= =?UTF-8?q?=E9=80=8F=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- publish/changeLog.md | 7 +------ src/renderer/App.vue | 4 ++-- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/publish/changeLog.md b/publish/changeLog.md index 3d5efa47..b55b01c2 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -1,8 +1,3 @@ -洛雪提前祝大家新年快乐、身体健康、阖家幸福! - ### 修复 -- 修复歌曲下载列表无法加载的问题 -- 修复歌曲下载任务数大于最大下载任务数的问题 -- 修复某些情况下歌曲下载错误的问题 -- 修复下载列表数据没有被迁移直接被丢弃的问题 +- 修复启用透明窗口鼠标不穿透的bug diff --git a/src/renderer/App.vue b/src/renderer/App.vue index 8bfb5d88..4c1cfe33 100644 --- a/src/renderer/App.vue +++ b/src/renderer/App.vue @@ -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) },