Skip to content

Commit

Permalink
Improve styling on focusable character identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Cummer committed Jul 31, 2018
1 parent beb0c43 commit 985c41d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wtf/text_widget.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
}
}

Expand Down

0 comments on commit 985c41d

Please sign in to comment.