From 24196d2c6fecae4b6bb52dfec14ac9d7e4bd40d4 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 13 Jan 2019 15:27:48 -0500 Subject: Revert "Render selected list item differently" This reverts commit 60284850f22624a03996e882fcfd6aeb2af88b93. --- widgets/directories.go | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'widgets') diff --git a/widgets/directories.go b/widgets/directories.go index d765ac2..ff2f6f5 100644 --- a/widgets/directories.go +++ b/widgets/directories.go @@ -53,7 +53,6 @@ func (dirlist *DirectoryList) UpdateList() { return strings.Compare(string(a), string(b)) > 0 }) dirlist.dirs.Set(dirs) - dirlist.dirs.Select(0) } }) } @@ -85,10 +84,7 @@ func (d directoryEntry) Draw(ctx *ui.Context) { } func (d directoryEntry) DrawWithSelected(ctx *ui.Context, selected bool) { - style := tcell.StyleDefault - if selected { - style = style.Background(tcell.ColorWhite).Foreground(tcell.ColorBlack) - } - ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', style) - ctx.Printf(0, 0, style, "%s", d) + // TODO: distinguish the selected item + ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', tcell.StyleDefault) + ctx.Printf(0, 0, tcell.StyleDefault, "%s", d) } -- cgit v1.2.3