提交 024e06ce 编写于 作者: J Joao

fix division by zero

上级 67eab6eb
......@@ -565,7 +565,7 @@ export class SCMViewlet extends PersistentViewsViewlet {
}
protected getDefaultViewSize(): number | undefined {
return this.dimension && this.dimension.height / this.views.length;
return this.dimension && this.dimension.height / Math.max(this.views.length, 1);
}
getOptimalWidth(): number {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册