about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorsqwishy <somebody@froghat.ca>2020-08-28 15:42:47 -0700
committerReto Brunner <reto@labrat.space>2020-08-29 10:52:38 +0200
commitf6bc73c63ac8b03aeb38bf7c5ee44c69fe28e018 (patch)
tree6b97b6562f7ac02a26989d447f40cd44d002e689
parent254b5ab517fbabdaa384759648b3c5b10d866cfc (diff)
downloadaerc-f6bc73c63ac8b03aeb38bf7c5ee44c69fe28e018.tar.gz
correct tcell.Style for underline
-rw-r--r--config/style.go2
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)
 }