@@ -1709,7 +1709,7 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditorD
1709
1709
return this . _scrollBeyondLastLine && ! this . isEmbedded ;
1710
1710
}
1711
1711
1712
- layout ( dimension : DOM . Dimension , shadowElement ?: HTMLElement , position ?: DOM . IDomPosition ) : void {
1712
+ layout ( dimension : DOM . Dimension , shadowElement ?: HTMLElement , _position ?: DOM . IDomPosition ) : void {
1713
1713
if ( ! shadowElement && this . _shadowElementViewInfo === null ) {
1714
1714
this . _dimension = dimension ;
1715
1715
return ;
@@ -1721,7 +1721,7 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditorD
1721
1721
}
1722
1722
1723
1723
if ( shadowElement ) {
1724
- this . updateShadowElement ( shadowElement , dimension , position ) ;
1724
+ this . updateShadowElement ( shadowElement , dimension , /* position*/ undefined ) ;
1725
1725
}
1726
1726
1727
1727
if ( this . _shadowElementViewInfo && this . _shadowElementViewInfo . width <= 0 && this . _shadowElementViewInfo . height <= 0 ) {
@@ -1750,7 +1750,7 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditorD
1750
1750
this . _overlayContainer . style . position = 'absolute' ;
1751
1751
this . _overlayContainer . style . overflow = 'hidden' ;
1752
1752
1753
- this . layoutContainerOverShadowElement ( dimension , position ) ;
1753
+ this . layoutContainerOverShadowElement ( dimension , /* position*/ undefined ) ;
1754
1754
1755
1755
if ( this . _webviewTransparentCover ) {
1756
1756
this . _webviewTransparentCover . style . height = `${ dimension . height } px` ;
0 commit comments