mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
TW-1595: info command doesn't print urgency details, if urgency is negative
- Thanks to Peter Rochen.
This commit is contained in:
parent
c0efa0f4d7
commit
21407e0ca2
3 changed files with 4 additions and 1 deletions
1
AUTHORS
1
AUTHORS
|
@ -115,6 +115,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
|
|||
Łukasz Panek
|
||||
V.Krishn
|
||||
Jens Erat
|
||||
Peter Rochen
|
||||
|
||||
Thanks to the following, who submitted detailed bug reports and excellent
|
||||
suggestions:
|
||||
|
|
|
@ -27,6 +27,8 @@
|
|||
(thanks to Scott M).
|
||||
- TW-1591 add an option to see non-pending project with command task summary
|
||||
(thanks to Pierre Campet).
|
||||
- TW-1595 info command doesn't print urgency details, if urgency is negative
|
||||
(thanks to Peter Rochen).
|
||||
- Setting 'bulk' to zero is interpreted as infinity, which means there is no
|
||||
amount of changes that is considered dangerous (thanks to Tomas Babej).
|
||||
- Disable hooks in bash completion script. Hooks were previously able to
|
||||
|
|
|
@ -393,7 +393,7 @@ int CmdInfo::execute (std::string& output)
|
|||
|
||||
// Create a second table, containing urgency details, if necessary.
|
||||
ViewText urgencyDetails;
|
||||
if (task->urgency () > 0.0)
|
||||
if (task->urgency () != 0.0)
|
||||
{
|
||||
if (context.color ())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue