diff --git a/ChangeLog b/ChangeLog index c4373560d..52f398207 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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). diff --git a/src/columns/ColDate.cpp b/src/columns/ColDate.cpp index 02f5720f3..6e785dc5b 100644 --- a/src/columns/ColDate.cpp +++ b/src/columns/ColDate.cpp @@ -208,7 +208,7 @@ void ColumnDate::render ( rightJustify ( Duration (date - now).format (), width))); else - lines.push_back (""); + lines.push_back (rightJustify ("", width)); } } }