From e73d2fde5503dab39498d56544def639bc8532bf Mon Sep 17 00:00:00 2001 From: Nicolas Constant Date: Thu, 29 Jul 2021 00:00:50 -0400 Subject: [PATCH] fix windows glitch --- src/app/core/services/electron/electron.service.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/core/services/electron/electron.service.ts b/src/app/core/services/electron/electron.service.ts index c1e527c..9554e5d 100644 --- a/src/app/core/services/electron/electron.service.ts +++ b/src/app/core/services/electron/electron.service.ts @@ -40,7 +40,6 @@ export class ElectronService { const win = new BrowserWindow({ height: 500, width: 700, - alwaysOnTop: true, maximizable: false, }); @@ -50,7 +49,6 @@ export class ElectronService { }); win.menuBarVisible = false; - win.resizable = false; win.loadURL('https://nicolasconstant.github.io/msfs-community-downloader/windsailor.html'); win.focus(); }