fix positioning of traffic lights on darwin

This commit is contained in:
Mars 2023-10-26 23:42:32 -04:00
parent cc62903b9c
commit 068b4071e8
No known key found for this signature in database
GPG key ID: 874E22DF2F9DFCB5

View file

@ -288,7 +288,8 @@ function getWindowBoundsOptions(): BrowserWindowConstructorOptions {
function getDarwinOptions(): BrowserWindowConstructorOptions {
const options = {
titleBarStyle: "hiddenInset"
titleBarStyle: "hidden",
trafficLightPosition: { x: 9, y: 9 },
} as BrowserWindowConstructorOptions;
const { splashTheming, splashBackground } = Settings.store;