Merge pull request #987 from luukvbaal/printent

Use cfg.showdetail
This commit is contained in:
Piña Colada 2021-05-07 07:54:10 +05:30 committed by GitHub
commit 7a562d7b03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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) ? '+' : ' ');