summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2019-08-17 10:35:50 +0200
committerYorhel <git@yorhel.nl>2019-08-17 10:35:51 +0200
commit62bc78d9377111173a60c8c825e6ef60dda16f98 (patch)
tree1e679d1544268a65709d6de8888c8f9ff7484ea6
parent72189c307faea847acc1fb771e030e954c602e7f (diff)
Increase space for item count in loading screen
Fixes #135
-rw-r--r--src/dir_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dir_common.c b/src/dir_common.c
index 3a2a9d0..f17fa2c 100644
--- a/src/dir_common.c
+++ b/src/dir_common.c
@@ -119,10 +119,10 @@ static void draw_progress() {
ncaddstr(2, 2, "Total items: ");
uic_set(UIC_NUM);
- printw("%-8d", dir_output.items);
+ printw("%-9d", dir_output.items);
if(dir_output.size) {
- ncaddstrc(UIC_DEFAULT, 2, 23, "size: ");
+ ncaddstrc(UIC_DEFAULT, 2, 24, "size: ");
printsize(UIC_DEFAULT, dir_output.size);
}