summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-06-07 23:32:07 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-06-07 23:32:07 +0900
commit443a80f254c8a21c17de910533bb11fcd253eb02 (patch)
tree3d4bf1b4e88b2ed80fef0c3e9558fb53b0f6d037
parent8017635a71e5e1f2676609f65d65ce835e1700c0 (diff)
Always use the same color for multi-select markers
-rw-r--r--src/terminal.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terminal.go b/src/terminal.go
index 9099576a..3dc0a751 100644
--- a/src/terminal.go
+++ b/src/terminal.go
@@ -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, " ")
}