From 84965d680cff655c7734070ef93fd3c1e2177748 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sat, 30 Mar 2019 12:59:18 -0400 Subject: Use tcell.Style.Reverse instead of black on white --- widgets/dirlist.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'widgets/dirlist.go') diff --git a/widgets/dirlist.go b/widgets/dirlist.go index 58108ff..eb79bc4 100644 --- a/widgets/dirlist.go +++ b/widgets/dirlist.go @@ -109,8 +109,7 @@ func (dirlist *DirectoryList) Draw(ctx *ui.Context) { } style := tcell.StyleDefault if name == dirlist.selected { - style = style.Background(tcell.ColorWhite). - Foreground(tcell.ColorBlack) + style = style.Reverse(true) } ctx.Fill(0, row, ctx.Width(), 1, ' ', style) ctx.Printf(0, row, style, "%s", name) -- cgit v1.2.3