Skip to content

Commit

Permalink
Add missing ControlSequences.SetUnderlineColor() method.
Browse files Browse the repository at this point in the history
Mirrors the ControlBuilder.SetUnderlineColor() method.
  • Loading branch information
alexrp committed Dec 13, 2023
1 parent 9314b2c commit 047a7c2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/core/Text/Control/ControlSequences.cs
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,11 @@ public static string SetBackgroundColor(Color color)
return Create(static (cb, color) => cb.SetForegroundColor(color), color);
}

public static string SetUnderlineColor(Color color)
{
return Create(static (cb, color) => cb.SetUnderlineColor(color), color);
}

public static string SetDecorations(
bool intense = false,
bool faint = false,
Expand Down

0 comments on commit 047a7c2

Please sign in to comment.