From 985c41d3b60fd048ce61fb6585e4e8149b195644 Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Mon, 30 Jul 2018 22:31:30 -0700 Subject: [PATCH] Improve styling on focusable character identifier --- wtf/text_widget.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wtf/text_widget.go b/wtf/text_widget.go index b2944f10..be38f41c 100644 --- a/wtf/text_widget.go +++ b/wtf/text_widget.go @@ -58,7 +58,7 @@ func (widget *TextWidget) ContextualTitle(defaultStr string) string { if widget.FocusChar() == "" { return fmt.Sprintf(" %s ", defaultStr) } else { - return fmt.Sprintf(" %s [darkgray](%s)[white] ", defaultStr, widget.FocusChar()) + return fmt.Sprintf(" %s [darkgray::u]%s[::-][green] ", defaultStr, widget.FocusChar()) } }