Skip to content

Commit

Permalink
re #105346.
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix committed Aug 27, 2020
1 parent fc1b768 commit 3428992
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditor
multipleSelectionSupport: false,
enableKeyboardNavigation: true,
additionalScrollHeight: 0,
transformOptimization: (isMacintosh && isNative) || getTitleBarStyle(this.configurationService, this.environmentService) === 'native',
transformOptimization: false, //(isMacintosh && isNative) || getTitleBarStyle(this.configurationService, this.environmentService) === 'native',
styleController: (_suffix: string) => { return this._list!; },
overrideStyles: {
listBackground: editorBackground,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ export class CodeCellRenderer extends AbstractCellRenderer implements IListRende
width: 0,
height: 0
},
overflowWidgetsDomNode: this.notebookEditor.getOverflowContainerDomNode()
// overflowWidgetsDomNode: this.notebookEditor.getOverflowContainerDomNode()
}, {});

disposables.add(this.editorOptions.onDidChange(newValue => editor.updateOptions(newValue)));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export class StatefulMarkdownCell extends Disposable {
width: width,
height: editorHeight
},
overflowWidgetsDomNode: this.notebookEditor.getOverflowContainerDomNode()
// overflowWidgetsDomNode: this.notebookEditor.getOverflowContainerDomNode()
}, {});
this.templateData.currentEditor = this.editor;

Expand Down

0 comments on commit 3428992

Please sign in to comment.