Skip to content

Commit

Permalink
Always use the same color for multi-select markers
Browse files Browse the repository at this point in the history
  • Loading branch information
junegunn committed Jun 7, 2015
1 parent 8017635 commit 443a80f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/terminal.go
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ func (t *Terminal) printItem(item *Item, current bool) {
if current {
C.CPrint(C.ColCursor, true, ">")
if selected {
C.CPrint(C.ColCurrent, true, ">")
C.CPrint(C.ColSelected, true, ">")
} else {
C.CPrint(C.ColCurrent, true, " ")
}
Expand Down

0 comments on commit 443a80f

Please sign in to comment.