Reverse selection mark for visibility

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

View File

@ -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) ? '+' | A_BOLD : ' ');
addch((ent->flags & FILE_SELECTED) ? '+' | A_REVERSE : ' ');
/* Directories are always shown on top */
resetdircolor(ent->flags);