提交 65804aee 编写于 作者: R rebornix

fix #104170. update layout with preset dimension if it exists.

上级 58d5e0ca
......@@ -926,7 +926,12 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditor
this.hideInset(output);
}));
this._list!.layout();
if (this._dimension) {
this._list?.layout(this._dimension.height - SCROLLABLE_ELEMENT_PADDING_TOP, this._dimension.width);
} else {
this._list!.layout();
}
this._dndController?.clearGlobalDragState();
// restore list state at last, it must be after list layout
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册