Skip to content

Commit 7be9857

Browse files
committed
Fixes microsoft#115960: Clarify what value of 8 does
1 parent d39b373 commit 7be9857

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/common/config/editorOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2484,7 +2484,7 @@ class EditorLineHeight extends EditorFloatOption<EditorOption.lineHeight> {
24842484
EditorOption.lineHeight, 'lineHeight',
24852485
EDITOR_FONT_DEFAULTS.lineHeight,
24862486
x => EditorFloatOption.clamp(x, 0, 150),
2487-
{ markdownDescription: nls.localize('lineHeight', "Controls the line height. \n - Use 0 to automatically compute the line height from the font size.\n - Values between 0 and 8 will be used as a multiplier with the font size.\n - Values greater than 8 will be used as effective values.") }
2487+
{ markdownDescription: nls.localize('lineHeight', "Controls the line height. \n - Use 0 to automatically compute the line height from the font size.\n - Values between 0 and 8 will be used as a multiplier with the font size.\n - Values greater than or equal to 8 will be used as effective values.") }
24882488
);
24892489
}
24902490

0 commit comments

Comments
 (0)