correct tcell.Style for underline

This commit is contained in:
sqwishy 2020-08-28 15:42:47 -07:00 committed by Reto Brunner
parent 254b5ab517
commit f6bc73c63a
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ func (s Style) Get() tcell.Style {
Background(s.Bg).
Bold(s.Bold).
Blink(s.Blink).
Underline(s.Blink).
Underline(s.Underline).
Reverse(s.Reverse)
}