Skip to content

Commit

Permalink
Fixed a layout problem: lines without deadline did not have enough wh…
Browse files Browse the repository at this point in the history
…itespace to make the titles line up properly
  • Loading branch information
egonw committed Mar 31, 2010
1 parent db7db58 commit 20c6709
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -22,7 +22,7 @@ public static String format(Item item) {
result.append(item.getCreationDate());
result.append(" ");
result.append(FormatHelpers.formatString(
item.getDeadline() == null ? "" : item.getDeadline(), 9)
item.getDeadline() == null ? "" : item.getDeadline(), 10)
);
result.append(" ");
result.append(item.getText());
Expand Down

0 comments on commit 20c6709

Please sign in to comment.