diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-13 15:12:52 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-01-13 15:12:52 -0500 |
commit | 60284850f22624a03996e882fcfd6aeb2af88b93 (patch) | |
tree | ccaef66a4e3628fc26df758e9380a2b4ef15db47 /widgets | |
parent | 3157897c1a20e5638feaf56e753b7886bc4ba267 (diff) |
Render selected list item differently
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/directories.go | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/widgets/directories.go b/widgets/directories.go index ff2f6f5..d765ac2 100644 --- a/widgets/directories.go +++ b/widgets/directories.go @@ -53,6 +53,7 @@ func (dirlist *DirectoryList) UpdateList() { return strings.Compare(string(a), string(b)) > 0 }) dirlist.dirs.Set(dirs) + dirlist.dirs.Select(0) } }) } @@ -84,7 +85,10 @@ func (d directoryEntry) Draw(ctx *ui.Context) { } func (d directoryEntry) DrawWithSelected(ctx *ui.Context, selected bool) { - // TODO: distinguish the selected item - ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', tcell.StyleDefault) - ctx.Printf(0, 0, tcell.StyleDefault, "%s", d) + 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) } |