CmdChart: renderSummary now prepends a blank line

This commit is contained in:
Paul Beckingham 2016-05-21 16:31:11 -05:00
parent 1aed409832
commit c3c2789fe1

View file

@ -508,7 +508,8 @@ static std::string renderSummary (
auto total_available = filter.range.total () - total_unavailable;
auto total_remaining = total_available - total_worked;
out << indent << "Tracked "
out << '\n'
<< indent << "Tracked "
<< std::setw (13) << std::setfill (' ') << Duration (total_worked).formatHours () << '\n';
if (total_remaining >= 0)