Figure out way better choice highlighting
This commit is contained in:
parent
d4230db74f
commit
17bf35e591
|
@ -21,7 +21,7 @@ func ui() {
|
|||
defer g.Close()
|
||||
g.SetManagerFunc(layout)
|
||||
g.Mouse = true
|
||||
g.Cursor = true
|
||||
g.Cursor = false
|
||||
|
||||
initKeybindings(g)
|
||||
|
||||
|
@ -124,7 +124,10 @@ func layout(g *gocui.Gui) error {
|
|||
}
|
||||
songSelection.Title = "Song selection:"
|
||||
songSelection.Wrap = true
|
||||
|
||||
songSelection.Editable = false
|
||||
songSelection.Highlight = true
|
||||
songSelection.SelFgColor = gocui.ColorCyan
|
||||
}
|
||||
|
||||
if currentlyPlaying, err := g.SetView("currentlyPlaying", maxX/2+4, 5, maxX-2, maxY-2); err != nil {
|
||||
|
|
Loading…
Reference in New Issue