Browse Source

Extra space for size column

master
Arun Prakash Jana 4 years ago
parent
commit
c9f9ca32dd
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/nnn.c

+ 1
- 1
src/nnn.c View File

@@ -3228,7 +3228,7 @@ static void printent_long(const struct entry *ent, uint namecols, bool sel)
++namecols;

size = coolsize(cfg.blkorder ? ent->blocks << blk_shift : ent->size);
len = 9 - (uint)strlen(size);
len = 10 - (uint)strlen(size);
while (--len)
addch(' ');
addstr(size);


Loading…
Cancel
Save