From e924913e117cc47c5a6dabb2be01a977281bbcd5 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 24 Dec 2014 10:00:57 -0500 Subject: [PATCH] TW-1417 - TW-1417 Misaligned fields in report for "remaining" date (thanks to Jeremy John Reeder). --- ChangeLog | 2 ++ src/columns/ColDate.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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)); } } }