From 74b53eb8c720860fc62bd7aced43f4cd1f17b5ea Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Tue, 26 Mar 2024 12:56:24 -0700 Subject: [PATCH] Remove color/id in profile, this didn't work properly Part of #204167 --- .../contrib/terminal/browser/terminalProfileQuickpick.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/vs/workbench/contrib/terminal/browser/terminalProfileQuickpick.ts b/src/vs/workbench/contrib/terminal/browser/terminalProfileQuickpick.ts index b0bd16d4243f7..116e678eacda4 100644 --- a/src/vs/workbench/contrib/terminal/browser/terminalProfileQuickpick.ts +++ b/src/vs/workbench/contrib/terminal/browser/terminalProfileQuickpick.ts @@ -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