fix positioning of traffic lights on darwin (#185)

Co-authored-by: V <vendicated@riseup.net>
This commit is contained in:
Mars 2023-10-30 13:35:24 -04:00 committed by GitHub
parent ec1c719553
commit 3262e083fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;