- Fixed bug #720, so that when the 'info' report renders total active time,
  it uses a lossless format (thanks to Bernhard B).
This commit is contained in:
Paul Beckingham 2011-08-23 22:15:00 -04:00
parent 89d3b4e805
commit 2f60bdf9d0
6 changed files with 44 additions and 2 deletions

View file

@ -386,7 +386,7 @@ int CmdInfo::execute (std::string& output)
{
row = journal.addRow ();
journal.set (row, 0, STRING_CMD_INFO_TOTAL_ACTIVE);
journal.set (row, 1, Duration (total_time).format (),
journal.set (row, 1, Duration (total_time).formatPrecise (),
(context.color () ? Color ("bold") : Color ()));
}
}