From da7dc8e6e2dcd4234da012a6fecbf63c751c796d Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 8 May 2021 08:57:27 +0530 Subject: [PATCH] Reversed block instead of ACS_CKBOARD for current --- src/nnn.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index 94b97d3f..f734157d 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -3783,9 +3783,10 @@ static void printent_long(const struct entry *ent, uint_t namecols, bool sel) int attrs1 = g_state.oldcolor ? A_DIM : COLOR_PAIR(C_MIS); #ifdef CKBOARD - addch(sel ? ACS_CKBOARD : ' '); + //addch(sel ? ACS_CKBOARD : ' '); + addch(sel ? ' ' | A_REVERSE : ' '); #else - addch(sel ? '>' : ' '); + addch(sel ? '>' | A_BOLD : ' '); #endif attron(attrs1); print_details(ent); -- 2.48.1