TW-1595: info command doesn't print urgency details, if urgency is negative
- Thanks to Peter Rochen.
This commit is contained in:
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 ())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user