mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Feedback
- 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:
parent
d4f85484df
commit
46b275c3ce
9 changed files with 95 additions and 13 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue