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 d9d9e24 commit c734fc3Copy full SHA for c734fc3
src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts
@@ -1826,7 +1826,9 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditorD
1826
this._overlayContainer.style.position = 'absolute';
1827
this._overlayContainer.style.overflow = 'hidden';
1828
1829
- this.layoutContainerOverShadowElement(dimension, position);
+ if (this._isVisible) {
1830
+ this.layoutContainerOverShadowElement(dimension, position);
1831
+ }
1832
1833
if (this._webviewTransparentCover) {
1834
this._webviewTransparentCover.style.height = `${dimension.height}px`;
0 commit comments