1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-11-30 12:54:31 +01:00

fix null ref

This commit is contained in:
Kyle Spearrin 2018-02-15 14:05:01 -05:00
parent 719ccb3948
commit 12a51eed89

View File

@ -123,7 +123,7 @@ export class WindowMain {
private windowStateChangeHandler(configKey: string, win: BrowserWindow) { private windowStateChangeHandler(configKey: string, win: BrowserWindow) {
global.clearTimeout(this.windowStateChangeTimer); global.clearTimeout(this.windowStateChangeTimer);
this.windowStateChangeTimer = setTimeout(async () => { this.windowStateChangeTimer = global.setTimeout(async () => {
await this.updateWindowState(configKey, win); await this.updateWindowState(configKey, win);
}, WindowEventHandlingDelay); }, WindowEventHandlingDelay);
} }
@ -183,12 +183,14 @@ export class WindowMain {
} }
} }
if (displayBounds != null) {
if (state.width > displayBounds.width) { if (state.width > displayBounds.width) {
state.width = displayBounds.width; state.width = displayBounds.width;
} }
if (state.height > displayBounds.height) { if (state.height > displayBounds.height) {
state.height = displayBounds.height; state.height = displayBounds.height;
} }
}
return state; return state;
} }