From 34e519415d5bca0bfb522ef485decb71929221fb Mon Sep 17 00:00:00 2001 From: rebornix Date: Tue, 31 Mar 2020 15:51:10 -0700 Subject: [PATCH] Fix ##93888. Update icons --- .../contrib/notebook/browser/contrib/notebookActions.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/contrib/notebook/browser/contrib/notebookActions.ts b/src/vs/workbench/contrib/notebook/browser/contrib/notebookActions.ts index 256d900ab27..080f8f60807 100644 --- a/src/vs/workbench/contrib/notebook/browser/contrib/notebookActions.ts +++ b/src/vs/workbench/contrib/notebook/browser/contrib/notebookActions.ts @@ -311,7 +311,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: 'workbench.action.executeNotebook', title: localize('notebookActions.menu.executeNotebook', "Execute Notebook (Run all cells)"), - icon: { id: 'codicon/debug-start' } + icon: { id: 'codicon/run-all' } }, order: -1, group: 'navigation', @@ -323,7 +323,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, { command: { id: 'workbench.action.executeNotebookCell', title: localize('notebookActions.menu.execute', "Execute Notebook Cell"), - icon: { id: 'codicon/debug-continue' } + icon: { id: 'codicon/run' } }, order: -1, group: 'navigation', @@ -645,7 +645,7 @@ registerAction2(class extends Action2 { order: CellToolbarOrder.DeleteCell, when: ContextKeyExpr.equals(NOTEBOOK_EDITABLE_CONTEXT_KEY, true) }, - icon: { id: 'codicon/x' } + icon: { id: 'codicon/trash' } }); } -- GitLab