mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Bold selection marker for better visibility
This commit is contained in:
parent
f4eb89029c
commit
4727b3baa8
|
@ -3723,7 +3723,7 @@ static void printent(const struct entry *ent, uint_t namecols, bool sel)
|
|||
int attrs = 0;
|
||||
uchar_t color_pair = get_color_pair_name_ind(ent, &ind, &attrs);
|
||||
|
||||
addch((ent->flags & FILE_SELECTED) ? '+' : ' ');
|
||||
addch((ent->flags & FILE_SELECTED) ? '+' | A_BOLD : ' ');
|
||||
|
||||
/* Directories are always shown on top */
|
||||
resetdircolor(ent->flags);
|
||||
|
|
Loading…
Reference in a new issue