ANSI CSI 22m should also turn off bold

This commit is contained in:
sawka 2022-06-03 00:53:21 -07:00
parent 93392fc149
commit 955ebceacd
1 changed files with 1 additions and 0 deletions

View File

@ -929,6 +929,7 @@ func (t *Terminal) sgrSequenceHandler(params []string) bool {
t.GetActiveBuffer().getCursorAttr().bold = false
case "22":
t.GetActiveBuffer().getCursorAttr().dim = false
t.GetActiveBuffer().getCursorAttr().bold = false
case "23":
t.GetActiveBuffer().getCursorAttr().italic = false
case "24":