refactor: disable always on top
This commit is contained in:
parent
96b0652a06
commit
4e0d006301
2 changed files with 1 additions and 3 deletions
|
@ -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
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Reference in a new issue