Feature - dependency column justification

- The dependency columns are now right-justified (thanks to Eric Fluger).
This commit is contained in:
Paul Beckingham 2011-01-08 11:10:39 -05:00
parent 022b219c0f
commit b5c46062c6
3 changed files with 6 additions and 6 deletions

View file

@ -520,7 +520,7 @@ int handleCustomReport (const std::string& report, std::string& outs)
{
table.addColumn (columnLabels[*col] != "" ? columnLabels[*col] : "Deps");
table.setColumnWidth (columnCount, Table::minimum);
table.setColumnJustification (columnCount, Table::left);
table.setColumnJustification (columnCount, Table::right);
int row = 0;
std::vector <Task> blocked;