We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3065b49 commit 8a4de76Copy full SHA for 8a4de76
src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.ts
@@ -468,14 +468,12 @@ export class CodeCell extends Disposable {
468
const viewLayout = this.templateData.editor.getLayoutInfo();
469
this.viewCell.editorHeight = newHeight;
470
this.relayoutCell();
471
- DOM.scheduleAtNextAnimationFrame(() => {
472
- this.layoutEditor(
473
- {
474
- width: viewLayout.width,
475
- height: newHeight
476
- }
477
- );
478
- });
+ this.layoutEditor(
+ {
+ width: viewLayout.width,
+ height: newHeight
+ }
+ );
479
}
480
481
relayoutCell() {
0 commit comments