From 78ab6b776fcab5eeecc2cf9ab79a03828389ea34 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Mon, 29 Feb 2016 19:02:51 +0100 Subject: [PATCH] tweak settings wording --- src/vs/workbench/electron-browser/main.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/electron-browser/main.contribution.ts b/src/vs/workbench/electron-browser/main.contribution.ts index a6bf003cbe9..c2d7ee0270b 100644 --- a/src/vs/workbench/electron-browser/main.contribution.ts +++ b/src/vs/workbench/electron-browser/main.contribution.ts @@ -60,7 +60,7 @@ configurationRegistry.registerConfiguration({ 'window.zoomLevel': { 'type': 'number', 'default': 0, - 'description': nls.localize('zoomLevel', "Adjust the zoom level of the window. The original size is 0 and each increment above or below represents zooming 20% larger or smaller.") + 'description': nls.localize('zoomLevel', "Adjust the zoom level of the window. The original size is 0 and each increment above (e.g. 1) or below (e.g. -1) represents zooming 20% larger or smaller. You can also enter decimals to adjust the zoom level with a finer granularity.") } } }); -- GitLab