pdf: fix broken new line in table (#11987)
Contributed by Jun NAITOH. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11306 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
dadf1d4fa1
commit
afc9e4784b
|
@ -4002,6 +4002,10 @@ class TCPDF
|
|||
@quote_page[@quote_count] = @page;
|
||||
@quote_count += 1
|
||||
when 'br'
|
||||
if @tdbegin
|
||||
@tdtext << "\n"
|
||||
return
|
||||
end
|
||||
Ln();
|
||||
|
||||
if (@li_spacer.length > 0)
|
||||
|
|
Loading…
Reference in New Issue