mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 14:39:06 +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;
|
function DefFontName:string;
|
||||||
const
|
const
|
||||||
DefFontNames : array [1..3] of string =
|
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');
|
('Liberation Sans', 'Arial', 'FreeSans');
|
||||||
|
{$ENDIF}
|
||||||
var
|
var
|
||||||
i: Integer;
|
i: Integer;
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user