From d9cc12292de23c9b1f9a99b07ea861be44b37912 Mon Sep 17 00:00:00 2001 From: rebornix Date: Tue, 27 Jul 2021 11:57:22 -0700 Subject: [PATCH] increase the bottom toolbar height to 20. --- src/vs/workbench/contrib/notebook/common/notebookOptions.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/contrib/notebook/common/notebookOptions.ts b/src/vs/workbench/contrib/notebook/common/notebookOptions.ts index 0cf5bb1f833..cac1086818d 100644 --- a/src/vs/workbench/contrib/notebook/common/notebookOptions.ts +++ b/src/vs/workbench/contrib/notebook/common/notebookOptions.ts @@ -350,10 +350,10 @@ export class NotebookOptions { if (insertToolbarPosition === 'betweenCells' || insertToolbarPosition === 'both') { return compactView ? { bottomToolbarGap: 12, - bottomToolbarHeight: 18 + bottomToolbarHeight: 20 } : { - bottomToolbarGap: 18, - bottomToolbarHeight: 18 + bottomToolbarGap: 20, + bottomToolbarHeight: 20 }; } else { return {