diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-03-05 19:00:16 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-03-05 19:00:16 +0000 |
commit | d99664354019e124b5c5bcd196609d397f0064e6 (patch) | |
tree | f328d695fa19fad3c0c6167279212a937ec285aa /app | |
parent | 074a4a6e0e377dc2caee539ff23a7d47376e481e (diff) | |
download | redmine-d99664354019e124b5c5bcd196609d397f0064e6.tar.gz redmine-d99664354019e124b5c5bcd196609d397f0064e6.zip |
adjusted the attachment date column width on pdf issue export to avoid overlapping in japanese
git-svn-id: http://redmine.rubyforge.org/svn/trunk@302 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/issues/_pdf.rfpdf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/issues/_pdf.rfpdf b/app/views/issues/_pdf.rfpdf index 042c6bb0e..39dfd90de 100644 --- a/app/views/issues/_pdf.rfpdf +++ b/app/views/issues/_pdf.rfpdf @@ -93,8 +93,8 @@ pdf.SetFontStyle('',8)
pdf.Cell(80,5, attachment.filename)
pdf.Cell(20,5, number_to_human_size(attachment.filesize),0,0,"R")
- pdf.Cell(20,5, format_date(attachment.created_on),0,0,"R")
- pdf.Cell(70,5, attachment.author.name,0,0,"R")
+ pdf.Cell(25,5, format_date(attachment.created_on),0,0,"R")
+ pdf.Cell(65,5, attachment.author.name,0,0,"R")
pdf.Ln
end
%>
\ No newline at end of file |