Skip to content

Commit

Permalink
Remove color/id in profile, this didn't work properly
Browse files Browse the repository at this point in the history
Part of #204167
  • Loading branch information
Tyriar committed Mar 26, 2024
1 parent 22f3839 commit 74b53eb
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,12 +139,6 @@ export class TerminalProfileQuickpick {
if (context.item.profile.env) {
newConfigValue[name].env = context.item.profile.env;
}
if (context.item.profile.color) {
newConfigValue[name].color = context.item.profile.color;
}
if (context.item.profile.icon) {
newConfigValue[name].icon = context.item.profile.icon;
}
await this._configurationService.updateValue(profilesKey, newConfigValue, ConfigurationTarget.USER);
},
onKeyMods: mods => keyMods = mods
Expand Down

0 comments on commit 74b53eb

Please sign in to comment.