aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-03-01 12:19:17 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-03-01 12:19:17 +0530
commit2b11601f8905d9dfd1f9ae575497596e24832615 (patch)
treea720f57c7514c91aaee1597bd213b16052270aa6 /src
parent5228528fac39a06e8b46bb02e9f1bd7a2110dc53 (diff)
downloadnnn-2b11601f8905d9dfd1f9ae575497596e24832615.tar.gz
Set attrs in a go
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/nnn.c b/src/nnn.c
index ea6b554..0d9ad8a 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -3196,10 +3196,7 @@ static void print_time(const time_t *timep)
static void printent(const struct entry *ent, uint namecols, bool sel)
{
char ind = get_ind(ent->mode, FALSE);
- int attrs = sel ? A_REVERSE : 0;
-
- if (ind == '@' || (ent->flags & HARD_LINK))
- attrs |= A_DIM;
+ int attrs = ((ind == '@' || (ent->flags & HARD_LINK)) ? A_DIM : 0) | (sel ? A_REVERSE : 0);
if (!ind)
++namecols;