1
Fork 0

Merge pull request #19264 from lnicola/theme-color

minor: Fix transparent diagnostics
This commit is contained in:
Laurențiu Nicola 2025-03-02 14:21:42 +00:00 committed by GitHub
commit 5c124a3b00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -207,11 +207,6 @@ export class AnsiDecorationProvider implements vscode.Disposable {
} }
} }
const themeColor = AnsiDecorationProvider._anserToThemeColor[color]; return AnsiDecorationProvider._anserToThemeColor[color];
if (themeColor) {
return new ThemeColor("terminal." + themeColor);
}
return undefined;
} }
} }