Reversed block instead of ACS_CKBOARD for current

This commit is contained in:
Arun Prakash Jana 2021-05-08 08:57:27 +05:30
parent 7acc9196d5
commit da7dc8e6e2
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 2 deletions

View File

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