From 85305a54684ba1c2d53f3aa620f87eae8bc6fade Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Thu, 2 Jan 2020 07:18:04 -0800 Subject: [PATCH] Add to notification to restart if font is new Fixes #87953 --- src/vs/workbench/contrib/terminal/browser/terminalPanel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/terminal/browser/terminalPanel.ts b/src/vs/workbench/contrib/terminal/browser/terminalPanel.ts index 6baef8e3350..6f347935926 100644 --- a/src/vs/workbench/contrib/terminal/browser/terminalPanel.ts +++ b/src/vs/workbench/contrib/terminal/browser/terminalPanel.ts @@ -88,7 +88,7 @@ export class TerminalPanel extends Panel { label: nls.localize('terminal.useMonospace', "Use 'monospace'"), run: () => this._configurationService.updateValue('terminal.integrated.fontFamily', 'monospace'), }]; - this._notificationService.prompt(Severity.Warning, nls.localize('terminal.monospaceOnly', "The terminal only supports monospace fonts."), choices); + this._notificationService.prompt(Severity.Warning, nls.localize('terminal.monospaceOnly', "The terminal only supports monospace fonts. Be sure to restart VS Code if this is a newly installed font."), choices); } } })); -- GitLab