From def17cd36eeb4868ebd092fec200e570e895f31f Mon Sep 17 00:00:00 2001 From: jliddev Date: Fri, 27 May 2022 14:02:29 -0500 Subject: [PATCH] restore some window events --- wowup-electron/app/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wowup-electron/app/main.ts b/wowup-electron/app/main.ts index a1c02e78..e8669634 100644 --- a/wowup-electron/app/main.ts +++ b/wowup-electron/app/main.ts @@ -290,11 +290,11 @@ function createWindow(): BrowserWindow { }); win.on("blur", () => { - // win.webContents.send("blur"); + win.webContents.send("blur"); }); win.on("focus", () => { - // win.webContents.send("focus"); + win.webContents.send("focus"); }); win.webContents.userAgent = USER_AGENT;