From 0514b559361f5b79339636ad716f5464da9282b6 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Sat, 30 Jul 2022 23:16:47 -0700 Subject: [PATCH] Fix default underline color Fixes #3971 --- src/common/buffer/AttributeData.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/buffer/AttributeData.ts b/src/common/buffer/AttributeData.ts index 6878069a..b51f7ecb 100644 --- a/src/common/buffer/AttributeData.ts +++ b/src/common/buffer/AttributeData.ts @@ -149,7 +149,7 @@ export class ExtendedAttrs implements IExtendedAttrs { constructor( underlineStyle: UnderlineStyle = UnderlineStyle.NONE, - underlineColor: number = -1 + underlineColor: number = Attributes.CM_DEFAULT ) { this.underlineStyle = underlineStyle; this.underlineColor = underlineColor;