mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
ColTypeDate: Fix countdown style width
This commit is contained in:
parent
c3bb3810be
commit
27f3e95f12
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ void ColumnTypeDate::measure (Task& task, unsigned int& minimum, unsigned int& m
|
|||
else if (_style == "countdown")
|
||||
{
|
||||
Datetime now;
|
||||
minimum = maximum = Duration (now - date).formatVague (true).length ();
|
||||
minimum = maximum = Duration (date - now).formatVague (true).length ();
|
||||
}
|
||||
else if (_style == "julian")
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue