mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
Use ACS_CKBOARD for currrent entry in detail mode
This commit is contained in:
parent
a0be1c33cb
commit
dc9d877941
|
@ -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);
|
int attrs1 = g_state.oldcolor ? A_DIM : COLOR_PAIR(C_MIS);
|
||||||
|
|
||||||
addch(sel ? '>' : ' ');
|
addch(sel ? ACS_CKBOARD : ' ');
|
||||||
attron(attrs1);
|
attron(attrs1);
|
||||||
print_details(ent);
|
print_details(ent);
|
||||||
|
|
||||||
attroff(attrs1);
|
attroff(attrs1);
|
||||||
addch(' ');
|
addch(' ');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue