diff options
author | sqwishy <somebody@froghat.ca> | 2020-08-28 15:42:47 -0700 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-08-29 10:52:38 +0200 |
commit | f6bc73c63ac8b03aeb38bf7c5ee44c69fe28e018 (patch) | |
tree | 6b97b6562f7ac02a26989d447f40cd44d002e689 /config/style.go | |
parent | 254b5ab517fbabdaa384759648b3c5b10d866cfc (diff) | |
download | aerc-f6bc73c63ac8b03aeb38bf7c5ee44c69fe28e018.tar.gz |
correct tcell.Style for underline
Diffstat (limited to 'config/style.go')
-rw-r--r-- | config/style.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/style.go b/config/style.go index 9a8a00f..caf9e4f 100644 --- a/config/style.go +++ b/config/style.go @@ -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) } |