This commit is contained in:
rebornix
2023-07-10 15:01:33 -07:00
parent 30d5668001
commit fa823baa3c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -991,13 +991,13 @@ export interface IListOptions<T> extends IListOptionsUpdate {
readonly mouseSupport?: boolean;
readonly horizontalScrolling?: boolean;
readonly scrollByPage?: boolean;
readonly paddingBottom?: number;
readonly transformOptimization?: boolean;
readonly smoothScrolling?: boolean;
readonly scrollableElementChangeOptions?: ScrollableElementChangeOptions;
readonly alwaysConsumeMouseWheel?: boolean;
readonly initialSize?: Dimension;
readonly paddingTop?: number;
readonly paddingBottom?: number;
}
export interface IListStyles {
@@ -869,10 +869,10 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditorD
multipleSelectionSupport: true,
selectionNavigation: true,
typeNavigationEnabled: true,
paddingTop: this._notebookOptions.computeTopInsertToolbarHeight(this.viewModel?.viewType),
paddingBottom: 0,
transformOptimization: false, //(isMacintosh && isNative) || getTitleBarStyle(this.configurationService, this.environmentService) === 'native',
initialSize: this._dimension,
paddingTop: this._notebookOptions.computeTopInsertToolbarHeight(this.viewModel?.viewType),
styleController: (_suffix: string) => { return this._list; },
overrideStyles: {
listBackground: notebookEditorBackground,