fix positioning of traffic lights on darwin (#185)
Co-authored-by: V <vendicated@riseup.net>
This commit is contained in:
parent
ec1c719553
commit
3262e083fa
1 changed files with 2 additions and 1 deletions
|
@ -288,7 +288,8 @@ function getWindowBoundsOptions(): BrowserWindowConstructorOptions {
|
||||||
|
|
||||||
function getDarwinOptions(): BrowserWindowConstructorOptions {
|
function getDarwinOptions(): BrowserWindowConstructorOptions {
|
||||||
const options = {
|
const options = {
|
||||||
titleBarStyle: "hiddenInset"
|
titleBarStyle: "hidden",
|
||||||
|
trafficLightPosition: { x: 10, y: 10 }
|
||||||
} as BrowserWindowConstructorOptions;
|
} as BrowserWindowConstructorOptions;
|
||||||
|
|
||||||
const { splashTheming, splashBackground } = Settings.store;
|
const { splashTheming, splashBackground } = Settings.store;
|
||||||
|
|
Loading…
Reference in a new issue