Restore window position.

This commit is contained in:
cryptofyre 2022-05-07 10:39:10 -05:00
parent f9f300968d
commit 9e66fd3d68

View file

@ -342,6 +342,8 @@ export class BrowserWindow {
}); });
this.options.width = windowState.width; this.options.width = windowState.width;
this.options.height = windowState.height; this.options.height = windowState.height;
this.options.x = windowState.x;
this.options.y = windowState.y;
switch (process.platform) { switch (process.platform) {
default: default: