From 130c20c69df43d68251d4e31f6277aebbfe70193 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Fri, 1 Jul 2011 04:44:15 +0000 Subject: [PATCH] PDF: use RDMMultiCell for drawing lines of issue description (#69). Contributed by Jun NAITOH. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6136 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/redmine/export/pdf.rb | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb index a59a70157..da1084fd6 100644 --- a/lib/redmine/export/pdf.rb +++ b/lib/redmine/export/pdf.rb @@ -282,8 +282,6 @@ module Redmine "#{issue.project} - #{issue.tracker} # #{issue.id}: #{issue.subject}") pdf.Ln - y0 = pdf.GetY - pdf.SetFontStyle('B',9) pdf.RDMCell(35,5, l(:field_status) + ":","LT") pdf.SetFontStyle('',9) @@ -331,18 +329,18 @@ module Redmine pdf.RDMMultiCell(155,5, (show_value custom_value),"R") end + y0 = pdf.GetY + pdf.SetFontStyle('B',9) pdf.RDMCell(35,5, l(:field_subject) + ":","LT") pdf.SetFontStyle('',9) pdf.RDMMultiCell(155,5, issue.subject,"RT") + pdf.Line(pdf.GetX, y0, pdf.GetX, pdf.GetY) pdf.SetFontStyle('B',9) - pdf.RDMCell(35,5, l(:field_description) + ":","LT") + pdf.RDMCell(35+155, 5, l(:field_description), "LRT", 1) pdf.SetFontStyle('',9) - pdf.RDMMultiCell(155,5, issue.description.to_s,"RT") - - pdf.Line(pdf.GetX, y0, pdf.GetX, pdf.GetY) - pdf.Line(pdf.GetX, pdf.GetY, pdf.GetX + 190, pdf.GetY) + pdf.RDMMultiCell(35+155, 5, issue.description.to_s, "LRB") pdf.Ln if issue.changesets.any? && -- 2.39.5