- Inadvertently committed a UDA formatting change that isn't ready.
This commit is contained in:
Paul Beckingham 2012-03-03 09:50:43 -05:00
parent 46b275c3ce
commit 173d24b3fb

View file

@ -322,13 +322,14 @@ int CmdInfo::execute (std::string& output)
{ {
row = view.addRow (); row = view.addRow ();
view.set (row, 0, col->label ()); view.set (row, 0, col->label ());
//view.set (row, 1, value); view.set (row, 1, value);
/*
std::vector <std::string> lines; std::vector <std::string> lines;
Color color; Color color;
col->render (lines, *task, 0, color); col->render (lines, *task, 0, color);
join (value, " ", lines); join (value, " ", lines);
view.set (row, 1, value); view.set (row, 1, value);
*/
} }
} }
} }