提交 c5f08080 编写于 作者: R rebornix

Fix folding issue.

上级 764b2ae6
......@@ -104,18 +104,14 @@ export class CodeCell extends Disposable {
this._register(templateData.editor!.onDidContentSizeChange((e) => {
if (e.contentHeightChanged) {
let currContentHeight = templateData.editor!.getContentHeight();
if (currContentHeight !== e.contentHeight) {
if (viewCell.editorHeight !== e.contentHeight) {
templateData.editor?.layout(
{
width: currContentHeight,
width: e.contentWidth,
height: e.contentHeight
}
);
}
if (viewCell.editorHeight !== currContentHeight) {
viewCell.editorHeight = e.contentHeight;
if (viewCell.outputs.length) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册