This commit is contained in:
Sandeep Somavarapu
2020-01-09 12:00:54 +01:00
parent 91d634e0b0
commit 8aeca9fed9
@@ -316,7 +316,6 @@ export class ViewPaneContainer extends Component implements IViewPaneContainer {
}
create(parent: HTMLElement): void {
// super.create(parent);
this.paneview = this._register(new PaneView(parent, this.options));
this._register(this.paneview.onDidDrop(({ from, to }) => this.movePane(from as ViewPane, to as ViewPane)));
this._register(addDisposableListener(parent, EventType.CONTEXT_MENU, (e: MouseEvent) => this.showContextMenu(new StandardMouseEvent(e))));