Use cfg.showdetail

This commit is contained in:
Luuk van Baal 2021-05-07 00:45:24 +02:00
parent b58e9fc384
commit 6730c0fd01
1 changed files with 3 additions and 3 deletions

View File

@ -3634,7 +3634,7 @@ static char get_detail_ind(const mode_t mode)
return '?';
}
static uchar_t get_color_pair_name_ind(const struct entry *ent, char *pind, int *pattr, bool detailed)
static uchar_t get_color_pair_name_ind(const struct entry *ent, char *pind, int *pattr)
{
switch (ent->mode & S_IFMT) {
case S_IFREG:
@ -3661,7 +3661,7 @@ static uchar_t get_color_pair_name_ind(const struct entry *ent, char *pind, int
if (g_state.oldcolor)
*pattr |= A_DIM;
}
if (!g_state.oldcolor || detailed)
if (!g_state.oldcolor || cfg.showdetail)
return (ent->flags & SYM_ORPHAN) ? C_ORP : C_LNK;
return 0;
case S_IFSOCK:
@ -3686,7 +3686,7 @@ static void printent(const struct entry *ent, uint_t namecols, bool sel)
{
char ind;
int attrs = 0;
uchar_t color_pair = get_color_pair_name_ind(ent, &ind, &attrs, (printptr == &printent_long));
uchar_t color_pair = get_color_pair_name_ind(ent, &ind, &attrs);
addch((ent->flags & FILE_SELECTED) ? '+' : ' ');