1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-11 13:15:20 +00:00

pdf: use "family" parameter instead of l(:general_pdf_fontname) at SetFont method (#19017)

Contributed by Jun NAITOH.

git-svn-id: http://svn.redmine.org/redmine/trunk@14950 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2015-12-06 06:35:37 +00:00
parent 6a824ee2ec
commit 9922125269

View File

@ -52,9 +52,9 @@ module Redmine
def SetFont(family, style='', size=0, fontfile='')
# FreeSerif Bold Thai font has problem.
style.delete!('B') if l(:general_pdf_fontname) == 'freeserif'
style.delete!('B') if family.to_s.casecmp('freeserif') != 0
# DejaVuSans Italic Arabic and Persian font has problem.
style.delete!('I') if l(:general_pdf_fontname) == 'DejaVuSans' && current_language.to_s.casecmp("vi") != 0
style.delete!('I') if family.to_s.casecmp('DejaVuSans') != 0 && current_language.to_s.casecmp("vi") != 0
super(family, style, size, fontfile)
end
alias_method :set_font, :SetFont