提交 b371ad56 编写于 作者: I isidor

Need to react with a timeout on the blur event due to possible concurent splices

fixes #56443
上级 ee947947
......@@ -518,9 +518,12 @@ class FunctionBreakpointInputRenderer implements IRenderer<IFunctionBreakpoint,
}
}));
toDispose.push(dom.addDisposableListener(inputBox.inputElement, 'blur', () => {
if (!template.breakpoint.name) {
wrapUp(true);
}
// Need to react with a timeout on the blur event due to possible concurent splices #56443
setTimeout(() => {
if (!template.breakpoint.name) {
wrapUp(true);
}
});
}));
template.inputBox = inputBox;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册