mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-04 12:28:35 +02:00
Bug
- Lack of Task default constructor, copy constructor and operator= implementation details caused tasks stored in an STL container to lose their cached urgency value. - Info report now specifically formats urgency values, whereas the default formatting adds justification spacing.
This commit is contained in:
parent
6fb3bc5b03
commit
3d69f70d66
2 changed files with 15 additions and 11 deletions
|
@ -619,7 +619,7 @@ int handleInfo (std::string& outs)
|
|||
// Task::urgency
|
||||
row = view.addRow ();
|
||||
view.set (row, 0, "Urgency");
|
||||
view.set (row, 1, task->urgency ());
|
||||
view.set (row, 1, trimLeft (format (task->urgency (), 4, 4)));
|
||||
|
||||
// Create a second table, containing undo log change details.
|
||||
ViewText journal;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue