From 3262e083fa3f0083fd21915ef5122d7a03f71008 Mon Sep 17 00:00:00 2001 From: Mars Date: Mon, 30 Oct 2023 13:35:24 -0400 Subject: [PATCH] fix positioning of traffic lights on darwin (#185) Co-authored-by: V --- src/main/mainWindow.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/mainWindow.ts b/src/main/mainWindow.ts index 7685b89..7cbaa87 100644 --- a/src/main/mainWindow.ts +++ b/src/main/mainWindow.ts @@ -288,7 +288,8 @@ function getWindowBoundsOptions(): BrowserWindowConstructorOptions { function getDarwinOptions(): BrowserWindowConstructorOptions { const options = { - titleBarStyle: "hiddenInset" + titleBarStyle: "hidden", + trafficLightPosition: { x: 10, y: 10 } } as BrowserWindowConstructorOptions; const { splashTheming, splashBackground } = Settings.store;