diff options
Diffstat (limited to '')
-rw-r--r-- | src/i_ui.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/i_ui.go b/src/i_ui.go index fc82779..35b57ea 100644 --- a/src/i_ui.go +++ b/src/i_ui.go @@ -361,9 +361,7 @@ func i_ui(data_dir string, opts HardOpts) { ui.style[TITLE_STYLE] = tcell.StyleDefault. Background(tcell.ColorReset). Foreground(tcell.ColorBlue).Dim(true).Bold(true) - ui.style[SEL_STYLE] = tcell.StyleDefault. - Background(tcell.ColorReset). - Foreground(tcell.ColorBlue).Dim(true).Bold(true) + ui.style[SEL_STYLE] = tcell.StyleDefault.Background(tcell.ColorBlack) // TODO: sel_style ui.s.SetStyle(ui.style[DEF_STYLE]) ui.dim[W], ui.dim[H], _ = term.GetSize(0) |