Bug - timesheet report

- The headers for the second table ('Started') were not underlined like
  those of the first table ('Completed').
This commit is contained in:
Paul Beckingham 2010-09-18 23:13:00 -04:00
parent 77815c080f
commit 1e7bebb3b2

View file

@ -1708,12 +1708,12 @@ int handleReportTimesheet (std::string &outs)
if (color && context.config.getBoolean ("fontunderline"))
{
completed.setColumnUnderline (1);
completed.setColumnUnderline (2);
completed.setColumnUnderline (3);
started.setColumnUnderline (1);
started.setColumnUnderline (2);
started.setColumnUnderline (3);
}
else
completed.setTableDashedUnderline ();
started.setTableDashedUnderline ();
started.setColumnWidth (0, Table::minimum);
started.setColumnWidth (1, Table::minimum);