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,