From 62bc78d9377111173a60c8c825e6ef60dda16f98 Mon Sep 17 00:00:00 2001
From: Yorhel <git@yorhel.nl>
Date: Sat, 17 Aug 2019 10:35:50 +0200
Subject: [PATCH] Increase space for item count in loading screen

Fixes #135
---
 src/dir_common.c | 4 ++--
 1 file 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);
   }
 
-- 
GitLab