提交 56f9c204 编写于 作者: J Joao Moreno

scm: memoize count

related to #57854
上级 30cf210b
......@@ -375,6 +375,10 @@ class ExtHostSourceControl implements vscode.SourceControl {
}
set count(count: number | undefined) {
if (this._count === count) {
return;
}
this._count = count;
this._proxy.$updateSourceControl(this.handle, { count });
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册