refactor: disable always on top

This commit is contained in:
zyrouge 2023-11-27 12:46:37 +05:30
parent 96b0652a06
commit 4e0d006301
2 changed files with 1 additions and 3 deletions

View file

@ -13,6 +13,5 @@ export const SplashProps: BrowserWindowConstructorOptions = {
width: 300, width: 300,
center: true, center: true,
resizable: false, resizable: false,
maximizable: false, maximizable: false
alwaysOnTop: true
}; };

View file

@ -103,7 +103,6 @@ function openNewUpdateWindow() {
const win = new BrowserWindow({ const win = new BrowserWindow({
width: 500, width: 500,
autoHideMenuBar: true, autoHideMenuBar: true,
alwaysOnTop: true,
webPreferences: { webPreferences: {
preload: join(__dirname, "updaterPreload.js"), preload: join(__dirname, "updaterPreload.js"),
nodeIntegration: false, nodeIntegration: false,