You are not logged in.
Pages: 1
Right text alignment is not working correct and i found out that it is because a bug in the procedure UnicodeTextWidth
Sourcecode on line 7273 in SynPdf.pas is currently:
while i < length(Ansi) do begin // loop is MBCS ready
and need to be changed to:
while i <= length(Ansi) do begin // loop is MBCS ready
Offline
Pages: 1