summaryrefslogtreecommitdiffstats
path: root/lib/redmine
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2015-12-04 07:29:56 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2015-12-04 07:29:56 +0000
commit439b7789804f90228ddba5d85ccb75d4021dc364 (patch)
treede42875168c1eb9dfc679380bb8b9953733e981d /lib/redmine
parentd20f0ada288fcf4689526afe32f9f0d87653920c (diff)
downloadredmine-439b7789804f90228ddba5d85ccb75d4021dc364.tar.gz
redmine-439b7789804f90228ddba5d85ccb75d4021dc364.zip
Merged r14908, r14909 and r14910 from trunk to 3.2-stable (#19017)
git-svn-id: http://svn.redmine.org/redmine/branches/3.2-stable@14912 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine')
-rw-r--r--lib/redmine/export/pdf.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb
index 8f94b68f2..9dd405a2a 100644
--- a/lib/redmine/export/pdf.rb
+++ b/lib/redmine/export/pdf.rb
@@ -35,13 +35,14 @@ module Redmine
set_rtl(l(:direction) == 'rtl')
@font_for_content = l(:general_pdf_fontname)
+ @monospaced_font_for_content = l(:general_pdf_monospaced_fontname)
@font_for_footer = l(:general_pdf_fontname)
set_creator(Redmine::Info.app_name)
set_font(@font_for_content)
set_header_font([@font_for_content, '', 10])
set_footer_font([@font_for_content, '', 8])
- set_default_monospaced_font(@font_for_content)
+ set_default_monospaced_font(@monospaced_font_for_content)
set_display_mode('default', 'OneColumn')
end