aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.ts
diff options
context:
space:
mode:
authorLibravatar Sadetdin EYILI <sad270@users.noreply.github.com>2021-11-22 02:07:28 +0100
committerLibravatar GitHub <noreply@github.com>2021-11-22 06:37:28 +0530
commitea5eb0154e9328d880d31d01f451114fefe1e815 (patch)
tree43c1f083bf2eda43e7ee2ae41ba8ce0d489d8028 /src/index.ts
parentchore: fix typescript error (diff)
downloadferdium-app-ea5eb0154e9328d880d31d01f451114fefe1e815.tar.gz
ferdium-app-ea5eb0154e9328d880d31d01f451114fefe1e815.tar.zst
ferdium-app-ea5eb0154e9328d880d31d01f451114fefe1e815.zip
Fix opening link when in fullscreen on MacOs (fix #867) (#2265)
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts
index 89903a669..7285533ea 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -516,6 +516,7 @@ ipcMain.on('open-browser-window', (_e, { url, serviceId }) => {
516 const serviceSession = session.fromPartition(`persist:service-${serviceId}`); 516 const serviceSession = session.fromPartition(`persist:service-${serviceId}`);
517 const child = new BrowserWindow({ 517 const child = new BrowserWindow({
518 parent: mainWindow, 518 parent: mainWindow,
519 fullscreenable: false,
519 webPreferences: { 520 webPreferences: {
520 session: serviceSession, 521 session: serviceSession,
521 // TODO: Aren't these needed here? 522 // TODO: Aren't these needed here?