fix: electron window on windows (#3480)
This commit is contained in:
parent
e572feff91
commit
7d12de1c4a
@ -6,9 +6,10 @@ export const mainWindowConfig: Electron.BrowserWindowConstructorOptions = {
|
||||
minWidth: DEFAULT_MIN_WIDTH,
|
||||
minHeight: DEFAULT_MIN_HEIGHT,
|
||||
show: true,
|
||||
transparent: true,
|
||||
frame: false,
|
||||
titleBarStyle: 'hidden',
|
||||
// we want to go frameless on windows and linux
|
||||
transparent: process.platform === 'darwin',
|
||||
frame: process.platform === 'darwin',
|
||||
titleBarStyle: 'hiddenInset',
|
||||
vibrancy: 'fullscreen-ui',
|
||||
visualEffectState: 'active',
|
||||
backgroundMaterial: 'acrylic',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user