Skip to content

Commit f7f3f48

Browse files
committed
Mention icon in terminal icon/color settings
Fixes microsoft#154354
1 parent a5ed786 commit f7f3f48

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/vs/platform/terminal/common/terminalPlatformConfiguration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ const terminalProfileBaseProperties: IJSONSchemaMap = {
4646
type: 'boolean'
4747
},
4848
icon: {
49-
description: localize('terminalProfile.icon', 'A codicon ID to associate with this terminal.'),
49+
description: localize('terminalProfile.icon', 'A codicon ID to associate with the terminal icon.'),
5050
...terminalIconSchema
5151
},
5252
color: {
53-
description: localize('terminalProfile.color', 'A theme color ID to associate with this terminal.'),
53+
description: localize('terminalProfile.color', 'A theme color ID to associate with the terminal icon.'),
5454
...terminalColorSchema
5555
},
5656
env: {

src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ const terminalConfiguration: IConfigurationNode = {
4141
default: false
4242
},
4343
[TerminalSettingId.TabsDefaultColor]: {
44-
description: localize('terminal.integrated.tabs.defaultColor', "A theme color ID to associate with terminals by default."),
44+
description: localize('terminal.integrated.tabs.defaultColor', "A theme color ID to associate with terminal icons by default."),
4545
...terminalColorSchema
4646
},
4747
[TerminalSettingId.TabsDefaultIcon]: {
48-
description: localize('terminal.integrated.tabs.defaultIcon', "A codicon ID to associate with terminals by default."),
48+
description: localize('terminal.integrated.tabs.defaultIcon', "A codicon ID to associate with terminal icons by default."),
4949
...terminalIconSchema,
5050
default: Codicon.terminal.id,
5151
},

0 commit comments

Comments
 (0)