state: make the progress bar look nice

cute-signatures
William Pitcock 2011-04-09 08:16:46 -05:00
parent 2911d0cad2
commit 762e0c717b
1 changed files with 3 additions and 3 deletions

View File

@ -712,15 +712,15 @@ static void apk_count_change(struct apk_change *change, struct apk_stats *stats)
static void apk_draw_progress(int percent)
{
const int bar_width = (apk_screen_width - 15);
const int bar_width = (apk_screen_width - 7);
int i;
fputs("\e7-[", stderr);
fprintf(stderr, "\e7%3i%% [", percent);
for (i = 0; i < bar_width * percent / 100; i++)
fputc('#', stderr);
for (; i < bar_width; i++)
fputc(' ', stderr);
fprintf(stderr, "]- %3i%%", percent);
fputc(']', stderr);
fflush(stderr);
fputs("\e8\e[0K", stderr);
}