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

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); int attrs1 = g_state.oldcolor ? A_DIM : COLOR_PAIR(C_MIS);
#ifdef CKBOARD #ifdef CKBOARD
addch(sel ? ACS_CKBOARD : ' '); //addch(sel ? ACS_CKBOARD : ' ');
addch(sel ? ' ' | A_REVERSE : ' ');
#else #else
addch(sel ? '>' : ' '); addch(sel ? '>' | A_BOLD : ' ');
#endif #endif
attron(attrs1); attron(attrs1);
print_details(ent); print_details(ent);