Skip to content

Commit fa823ba

Browse files
committed
💄
1 parent 30d5668 commit fa823ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/vs/base/browser/ui/list/listWidget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,13 +991,13 @@ export interface IListOptions<T> extends IListOptionsUpdate {
991991
readonly mouseSupport?: boolean;
992992
readonly horizontalScrolling?: boolean;
993993
readonly scrollByPage?: boolean;
994-
readonly paddingBottom?: number;
995994
readonly transformOptimization?: boolean;
996995
readonly smoothScrolling?: boolean;
997996
readonly scrollableElementChangeOptions?: ScrollableElementChangeOptions;
998997
readonly alwaysConsumeMouseWheel?: boolean;
999998
readonly initialSize?: Dimension;
1000999
readonly paddingTop?: number;
1000+
readonly paddingBottom?: number;
10011001
}
10021002

10031003
export interface IListStyles {

src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -869,10 +869,10 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditorD
869869
multipleSelectionSupport: true,
870870
selectionNavigation: true,
871871
typeNavigationEnabled: true,
872+
paddingTop: this._notebookOptions.computeTopInsertToolbarHeight(this.viewModel?.viewType),
872873
paddingBottom: 0,
873874
transformOptimization: false, //(isMacintosh && isNative) || getTitleBarStyle(this.configurationService, this.environmentService) === 'native',
874875
initialSize: this._dimension,
875-
paddingTop: this._notebookOptions.computeTopInsertToolbarHeight(this.viewModel?.viewType),
876876
styleController: (_suffix: string) => { return this._list; },
877877
overrideStyles: {
878878
listBackground: notebookEditorBackground,

0 commit comments

Comments
 (0)