LazReport: fclpdf exporter, prefer Arial font as default in windows (avoid embedding of unused font program)

git-svn-id: trunk@57626 -
This commit is contained in:
jesus 2018-04-08 17:30:59 +00:00
parent a312e5d857
commit 984515fd64

View File

@ -345,7 +345,12 @@ procedure TlrPdfExportFilter.SetupFonts;
function DefFontName:string;
const
DefFontNames : array [1..3] of string =
// TODO: Check if Arial is better default choice in windows/linux/mac
{$IFDEF MSWINDOWS}
('Arial', 'Liberation Sans', 'FreeSans');
{$ELSE}
('Liberation Sans', 'Arial', 'FreeSans');
{$ENDIF}
var
i: Integer;
begin