提交 6f6b8156 编写于 作者: R Rob Lourens

Call cell statusbar providers after changes are sent to the EH

Fix #122341
上级 99f8682e
......@@ -91,7 +91,10 @@ class CellStatusBarHelper extends Disposable {
}
private _updateSoon(): void {
this._updateThrottler.queue(() => this._update());
// Wait a tick to make sure that the event is fired to the EH before triggering status bar providers
setTimeout(() => {
this._updateThrottler.queue(() => this._update());
}, 0);
}
private async _update() {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册