diff options
author | Joe <rbo@gmx.us> | 2024-01-23 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-01-23 20:20:20 +0100 |
commit | dfe86e1c3e2200f3b1cd61dfdf678b0849a5565d (patch) | |
tree | 6bd9cc996a9d30a1e5e158184268a16bad5b019c /src | |
parent | rly that was the fix (diff) | |
download | hardflip-dfe86e1c3e2200f3b1cd61dfdf678b0849a5565d.tar.gz hardflip-dfe86e1c3e2200f3b1cd61dfdf678b0849a5565d.tar.bz2 hardflip-dfe86e1c3e2200f3b1cd61dfdf678b0849a5565d.tar.xz hardflip-dfe86e1c3e2200f3b1cd61dfdf678b0849a5565d.tar.zst hardflip-dfe86e1c3e2200f3b1cd61dfdf678b0849a5565d.zip |
go
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) |