Skip to content

Commit 76cc0e1

Browse files
authored
Window.SystemColorTheme missing period at the end of setting description (microsoft#211235)
1 parent 97258cb commit 76cc0e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/services/themes/electron-sandbox/themes.contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ configurationRegistry.registerConfiguration({
2121
localize('window.systemColorTheme.light', "Enforce a light system color theme."),
2222
localize('window.systemColorTheme.dark', "Enforce a dark system color theme."),
2323
],
24-
markdownDescription: localize({ key: 'window.systemColorTheme', comment: ['{0} and {1} will become links to other settings.'] }, "Overrides the system color theme that is used for native UI elements such as native dialogs, menus and title bar. Even if your OS is configured in light appearance mode, you can select a dark system color theme for the window. You can also configure to automatically adjust based on the {0} setting. Note: Using this setting will disable {1}", formatSettingAsLink(ThemeSettings.COLOR_THEME), formatSettingAsLink(ThemeSettings.DETECT_COLOR_SCHEME)),
24+
markdownDescription: localize({ key: 'window.systemColorTheme', comment: ['{0} and {1} will become links to other settings.'] }, "Overrides the system color theme that is used for native UI elements such as native dialogs, menus and title bar. Even if your OS is configured in light appearance mode, you can select a dark system color theme for the window. You can also configure to automatically adjust based on the {0} setting. Note: Using this setting will disable {1}.", formatSettingAsLink(ThemeSettings.COLOR_THEME), formatSettingAsLink(ThemeSettings.DETECT_COLOR_SCHEME)),
2525
default: 'default',
2626
included: ENABLE_SYSTEM_COLOR_SCHEME_SETTING,
2727
scope: ConfigurationScope.APPLICATION,

0 commit comments

Comments
 (0)