- TW-1417 Misaligned fields in report for "remaining" date (thanks to Jeremy
          John Reeder).
This commit is contained in:
Paul Beckingham 2014-12-24 10:00:57 -05:00
parent 84dc7dd245
commit e924913e11
2 changed files with 3 additions and 1 deletions

View file

@ -167,6 +167,8 @@
Schlatow).
- TW-1415 The recurrence value 'month' is not valid (thanks to Petteri).
- TW-1416 Dates can't be input with hyphens (thanks to Jeremy John Reeder).
- TW-1417 Misaligned fields in report for "remaining" date (thanks to Jeremy
John Reeder).
- TW-1420 Modifying 'uuid' fails to generate error (thanks to Black Ops Testing).
- TW-1421 Modifying 'uuid' with bogus value can corrupt undo.data (thanks to
Black Ops Testing).

View file

@ -208,7 +208,7 @@ void ColumnDate::render (
rightJustify (
Duration (date - now).format (), width)));
else
lines.push_back ("");
lines.push_back (rightJustify ("", width));
}
}
}