mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
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:
parent
77815c080f
commit
1e7bebb3b2
1 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue