提交 32b9ebe5 编写于 作者: I isidor

Do not fire composite opened if open got ignored (another compoiste opened meanwhile)

fixes #11373
上级 f20867bf
......@@ -150,7 +150,10 @@ export abstract class CompositePart<T extends Composite> extends Part {
});
});
}).then(composite => {
this._onDidCompositeOpen.fire(composite);
if (composite) {
this._onDidCompositeOpen.fire(composite);
}
return composite;
});
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册