提交 c7f15b3d 编写于 作者: I isidor

list do not cache 0 height

fixes #85897
上级 1bf341e6
......@@ -129,6 +129,8 @@ export abstract class CachedListVirtualDelegate<T extends object> implements ILi
abstract getTemplateId(element: T): string;
setDynamicHeight(element: T, height: number): void {
this.cache.set(element, height);
if (height > 0) {
this.cache.set(element, height);
}
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册