- When bulk tasks are modified, the "project changed" messages are
  now retained until processing is completed, so that only one message
  per project is generated.
This commit is contained in:
Paul Beckingham 2012-03-03 09:46:11 -05:00
parent d4f85484df
commit 46b275c3ce
9 changed files with 95 additions and 13 deletions

View file

@ -317,9 +317,19 @@ int CmdInfo::execute (std::string& output)
Column* col = context.columns[*att];
if (col)
{
row = view.addRow ();
view.set (row, 0, col->label ());
view.set (row, 1, task->get (*att));
std::string value = task->get (*att);
if (value != "")
{
row = view.addRow ();
view.set (row, 0, col->label ());
//view.set (row, 1, value);
std::vector <std::string> lines;
Color color;
col->render (lines, *task, 0, color);
join (value, " ", lines);
view.set (row, 1, value);
}
}
}
}