From 1341a8db3dc06af5e1092e615f2dd8435ee9d612 Mon Sep 17 00:00:00 2001 From: Sential Date: Sun, 30 Jun 2019 21:10:26 +0200 Subject: [PATCH] fix: dialogs on macOS --- package.json | 2 +- src/main/windows/auth.ts | 1 + src/main/windows/find.ts | 1 + src/main/windows/permissions.ts | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 70911c587..21dc02e78 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wexond", - "version": "2.2.3", + "version": "2.2.2", "description": "Extensible, fast and innovative web browser with material UI.", "keywords": [ "web-browser", diff --git a/src/main/windows/auth.ts b/src/main/windows/auth.ts index da82989bf..cd3778590 100644 --- a/src/main/windows/auth.ts +++ b/src/main/windows/auth.ts @@ -15,6 +15,7 @@ export class AuthWindow extends BrowserWindow { height: HEIGHT, transparent: true, show: false, + fullscreenable: false, webPreferences: { nodeIntegration: true, contextIsolation: false, diff --git a/src/main/windows/find.ts b/src/main/windows/find.ts index 2eb914a0f..0cc768e3d 100644 --- a/src/main/windows/find.ts +++ b/src/main/windows/find.ts @@ -14,6 +14,7 @@ export class FindWindow extends BrowserWindow { width: WIDTH, height: HEIGHT, transparent: true, + fullscreenable: false, show: false, webPreferences: { nodeIntegration: true, diff --git a/src/main/windows/permissions.ts b/src/main/windows/permissions.ts index 86e33aaa4..72478c7a1 100644 --- a/src/main/windows/permissions.ts +++ b/src/main/windows/permissions.ts @@ -12,6 +12,7 @@ export class PermissionsWindow extends BrowserWindow { height: 200, transparent: true, show: false, + fullscreenable: false, webPreferences: { nodeIntegration: true, contextIsolation: false,