1
0
mirror of https://github.com/gdamore/tcell.git synced 2025-04-24 13:48:51 +08:00

Fixed a typo.

This commit is contained in:
Oliver 2020-10-17 00:38:43 +02:00 committed by Garrett D'Amore
parent 3907a8d921
commit acf90d56d5

View File

@ -131,7 +131,7 @@ func (s Style) StrikeThrough(on bool) Style {
func (s Style) Attributes(attrs AttrMask) Style {
return Style{
fg: s.fg,
bg: s.fg,
bg: s.bg,
attrs: attrs,
}
}