mirror of https://github.com/gdamore/tcell.git
Windows build fix.
This commit is contained in:
parent
9bc5c636ae
commit
18256bb692
|
@ -930,14 +930,13 @@ func (s *cScreen) sendVtStyle(style Style) {
|
|||
esc.WriteString(vtBlink)
|
||||
}
|
||||
if us != UnderlineStyleNone {
|
||||
if uc == ColorReset {
|
||||
esc.WriteString(vtUnderColorReset)
|
||||
} else if uc.IsRGB() {
|
||||
r, g, b := uc.RGB()
|
||||
_, _ = fmt.Fprintf(esc, vtUnderColorRGB, int(r), int(g), int(b))
|
||||
} else if uc.Valid() {
|
||||
_, _ = fmt.Fprintf(esc, vtUnderColor, uc&0xff)
|
||||
}
|
||||
if uc == ColorReset {
|
||||
esc.WriteString(vtUnderColorReset)
|
||||
} else if uc.IsRGB() {
|
||||
r, g, b := uc.RGB()
|
||||
_, _ = fmt.Fprintf(esc, vtUnderColorRGB, int(r), int(g), int(b))
|
||||
} else if uc.Valid() {
|
||||
_, _ = fmt.Fprintf(esc, vtUnderColor, uc&0xff)
|
||||
}
|
||||
|
||||
esc.WriteString(vtUnderline)
|
||||
|
@ -954,6 +953,7 @@ func (s *cScreen) sendVtStyle(style Style) {
|
|||
esc.WriteString(vtDashedUnderline)
|
||||
}
|
||||
}
|
||||
|
||||
if attrs&AttrReverse != 0 {
|
||||
esc.WriteString(vtReverse)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue