提交 10a79418 编写于 作者: I isidor

diffReview: do not automatically hide when original or modified editor is focused

fixes #88695
上级 dd0f2fec
......@@ -125,16 +125,6 @@ export class DiffReview extends Disposable {
}
this._render();
}));
this._register(diffEditor.getOriginalEditor().onDidFocusEditorWidget(() => {
if (this._isVisible) {
this.hide();
}
}));
this._register(diffEditor.getModifiedEditor().onDidFocusEditorWidget(() => {
if (this._isVisible) {
this.hide();
}
}));
this._register(dom.addStandardDisposableListener(this.domNode.domNode, 'click', (e) => {
e.preventDefault();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册