demo: properly color vertbar in summary line

This commit is contained in:
nick black 2020-02-23 06:00:09 -05:00
parent 339185dd6f
commit 78595399a1
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -353,7 +353,8 @@ summary_table(struct ncdirect* nc, const char* spec){
bprefix(totalbytes, 1, totalbuf, 0); bprefix(totalbytes, 1, totalbuf, 0);
qprefix(totalrenderns, GIG, rtimebuf, 0); qprefix(totalrenderns, GIG, rtimebuf, 0);
table_segment(nc, "", "══╧═════════╪════════╪═══════╪═════════╪═════════╪═══╪═══════╪═══════╝\n"); table_segment(nc, "", "══╧═════════╪════════╪═══════╪═════════╪═════════╪═══╪═══════╪═══════╝\n");
table_printf(nc, "", " │%*ss", PREFIXSTRLEN, timebuf); printf("");
table_printf(nc, "", "%*ss", PREFIXSTRLEN, timebuf);
table_printf(nc, "", "%7lu", totalframes); table_printf(nc, "", "%7lu", totalframes);
table_printf(nc, "", "%*s", BPREFIXSTRLEN, totalbuf); table_printf(nc, "", "%*s", BPREFIXSTRLEN, totalbuf);
table_printf(nc, "", " %*ss", PREFIXSTRLEN, rtimebuf); table_printf(nc, "", " %*ss", PREFIXSTRLEN, rtimebuf);