assume window starts focused

This commit is contained in:
Joao Moreno
2017-07-20 15:03:16 +02:00
parent d17e8750e3
commit 15e4c72301

View File

@@ -15,7 +15,7 @@ export class ExtHostWindow implements ExtHostWindowShape {
private _onDidChangeWindowFocus = new Emitter<boolean>();
readonly onDidChangeWindowFocus: Event<boolean> = this._onDidChangeWindowFocus.event;
private _isFocused = false;
private _isFocused = true;
get isFocused(): boolean { return this._isFocused; }
constructor(threadService: IThreadService) {