mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-24 08:56:43 +02:00
Bug #TW-255
- #TW-255 'Mask' instead of 'iMask' shown in info report (thanks to Benjamin Weber)
This commit is contained in:
parent
41e8a8b20d
commit
28fe7420fc
2 changed files with 7 additions and 2 deletions
|
@ -5,6 +5,8 @@ Features
|
||||||
+ #1492 task show to display default values when appropriate (thanks to Renato
|
+ #1492 task show to display default values when appropriate (thanks to Renato
|
||||||
Alves).
|
Alves).
|
||||||
+ #1501 info report streamlining - partially implemented.
|
+ #1501 info report streamlining - partially implemented.
|
||||||
|
+ #TW-255 'Mask' instead of 'iMask' shown in info report (thanks to Benjamin
|
||||||
|
Weber)
|
||||||
+ Removed deprecated 'echo.command' setting, in favor of the 'header' and
|
+ Removed deprecated 'echo.command' setting, in favor of the 'header' and
|
||||||
'affected' verbosity tokens.
|
'affected' verbosity tokens.
|
||||||
+ Removed deprecated 'edit.verbose' setting, in favor of the 'edit' verbosity
|
+ Removed deprecated 'edit.verbose' setting, in favor of the 'edit' verbosity
|
||||||
|
|
|
@ -194,14 +194,17 @@ int CmdInfo::execute (std::string& output)
|
||||||
view.set (row, 1, task->get ("recur"));
|
view.set (row, 1, task->get ("recur"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// parent
|
||||||
if (task->has ("parent"))
|
if (task->has ("parent"))
|
||||||
{
|
{
|
||||||
// parent
|
|
||||||
row = view.addRow ();
|
row = view.addRow ();
|
||||||
view.set (row, 0, STRING_COLUMN_LABEL_PARENT);
|
view.set (row, 0, STRING_COLUMN_LABEL_PARENT);
|
||||||
view.set (row, 1, task->get ("parent"));
|
view.set (row, 1, task->get ("parent"));
|
||||||
|
}
|
||||||
|
|
||||||
// mask
|
// mask
|
||||||
|
if (task->has ("mask"))
|
||||||
|
{
|
||||||
row = view.addRow ();
|
row = view.addRow ();
|
||||||
view.set (row, 0, STRING_COLUMN_LABEL_MASK);
|
view.set (row, 0, STRING_COLUMN_LABEL_MASK);
|
||||||
view.set (row, 1, task->get ("mask"));
|
view.set (row, 1, task->get ("mask"));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue