remove leftover console.log

This commit is contained in:
Benjamin Pasero
2019-11-21 08:52:50 +01:00
parent 7521ebdeb4
commit 9c8b2f2f08

View File

@@ -89,10 +89,7 @@ export class NoTabsTitleControl extends TitleControl {
EventHelper.stop(e, false);
// delayed to let the onTitleClick() come first which can cause a focus change which can close quick open
setTimeout(() => {
console.log('quick open show');
this.quickOpenService.show();
});
setTimeout(() => this.quickOpenService.show());
}
private onTitleDoubleClick(e: MouseEvent): void {
@@ -117,9 +114,7 @@ export class NoTabsTitleControl extends TitleControl {
// gesture tap should open the quick open
// editorGroupView will focus on the editor again when there are mouse/pointer/touch down events
// we need to wait a bit as `GesureEvent.Tap` is generated from `touchstart` and then `touchend` evnets, which are not an atom event.
setTimeout(() => {
this.quickOpenService.show();
}, 50);
setTimeout(() => this.quickOpenService.show(), 50);
}
}