Browse Source

pdf: fix Vietnamese Italic is not shown (#21328)

git-svn-id: http://svn.redmine.org/redmine/trunk@14888 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.2.0
Toshi MARUYAMA 8 years ago
parent
commit
41c64d1266
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/redmine/export/pdf.rb

+ 1
- 1
lib/redmine/export/pdf.rb View File

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

Loading…
Cancel
Save