* Set default font to postscript name

git-svn-id: trunk@43807 -
This commit is contained in:
michael 2019-12-28 21:21:45 +00:00
parent f01495668e
commit 3418f0e977

View File

@ -2343,11 +2343,14 @@ Function ReportExportManager : TFPReportExportManager;
{ this should probably be more configurable or flexible per platform }
Const
{ Note, these are the postscript names, not the human-readable ones. }
{$IFDEF UNIX}
cDefaultFont = 'LiberationSans';
{$ELSE}
{$IFDEF WINDOWS}
cDefaultFont = 'Arial';
cDefaultFont = 'ArialMT';
{$ELSE}
cDefaultFont = 'Helvetica';
{$ENDIF}