summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-11-28 05:58:32 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-11-28 05:58:32 +0000
commit9dfaa562fc447a5bf8fe204f2b3c4b25428d2b8c (patch)
tree1762f28c75585ce8913a7d8f67f0888b98c6b612
parent516e0b953cb5343fa76e8ef45b83c5a66fb58c8b (diff)
downloadredmine-9dfaa562fc447a5bf8fe204f2b3c4b25428d2b8c.tar.gz
redmine-9dfaa562fc447a5bf8fe204f2b3c4b25428d2b8c.zip
pdf: expand relational issues status column width of issue pdf (#5634)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7965 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--lib/redmine/export/pdf.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb
index b09f9b60d..41d502a2b 100644
--- a/lib/redmine/export/pdf.rb
+++ b/lib/redmine/export/pdf.rb
@@ -418,9 +418,9 @@ module Redmine
" # #{relation.other_issue(issue).id}: #{relation.other_issue(issue).subject}"
buf = truncate(buf, :length => truncate_length)
pdf.SetFontStyle('', 8)
- pdf.RDMCell(35+155-50,5, buf, "L")
+ pdf.RDMCell(35+155-60, 5, buf, "L")
pdf.SetFontStyle('B',8)
- pdf.RDMCell(10,5, relation.other_issue(issue).status.to_s, "")
+ pdf.RDMCell(20,5, relation.other_issue(issue).status.to_s, "")
pdf.RDMCell(20,5, format_date(relation.other_issue(issue).start_date), "")
pdf.RDMCell(20,5, format_date(relation.other_issue(issue).due_date), "R")
pdf.Ln