mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
CmdChart: renderSummary now prepends a blank line
This commit is contained in:
parent
1aed409832
commit
c3c2789fe1
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue