proper default height

This commit is contained in:
Kyle Spearrin 2018-05-04 17:33:06 -04:00
parent 36dfdf24f1
commit 61e13daefa
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export class WindowMain {
private windowStateChangeTimer: NodeJS.Timer;
private windowStates: { [key: string]: any; } = {};
constructor(private storageService: StorageService, private defaultWidth = 950, private defaultHeight: 600) { }
constructor(private storageService: StorageService, private defaultWidth = 950, private defaultHeight = 600) { }
init(): Promise<any> {
return new Promise((resolve, reject) => {