mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Reversed block instead of ACS_CKBOARD for current
This commit is contained in:
parent
7acc9196d5
commit
da7dc8e6e2
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue