Always use the same color for multi-select markers

This commit is contained in:
Junegunn Choi 2015-06-07 23:32:07 +09:00
parent 8017635a71
commit 443a80f254

View File

@ -373,7 +373,7 @@ func (t *Terminal) printItem(item *Item, current bool) {
if current { if current {
C.CPrint(C.ColCursor, true, ">") C.CPrint(C.ColCursor, true, ">")
if selected { if selected {
C.CPrint(C.ColCurrent, true, ">") C.CPrint(C.ColSelected, true, ">")
} else { } else {
C.CPrint(C.ColCurrent, true, " ") C.CPrint(C.ColCurrent, true, " ")
} }