From dc9d877941f18eaa6d2235ae454407a983cc1740 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Thu, 8 Apr 2021 02:30:21 +0530 Subject: [PATCH] Use ACS_CKBOARD for currrent entry in detail mode --- src/nnn.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index e69cc150..250b5415 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -3758,10 +3758,9 @@ static void printent_long(const struct entry *ent, uint_t namecols, bool sel) { int attrs1 = g_state.oldcolor ? A_DIM : COLOR_PAIR(C_MIS); - addch(sel ? '>' : ' '); + addch(sel ? ACS_CKBOARD : ' '); attron(attrs1); print_details(ent); - attroff(attrs1); addch(' ');