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);