Explorar el Código

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 hace 8 años
padre
commit
41c64d1266
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      lib/redmine/export/pdf.rb

+ 1
- 1
lib/redmine/export/pdf.rb Ver fichero

@@ -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

Cargando…
Cancelar
Guardar