mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-04 05:38:16 +02:00
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:
parent
a312e5d857
commit
984515fd64
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user