* 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 } { this should probably be more configurable or flexible per platform }
Const Const
{ Note, these are the postscript names, not the human-readable ones. }
{$IFDEF UNIX} {$IFDEF UNIX}
cDefaultFont = 'LiberationSans'; cDefaultFont = 'LiberationSans';
{$ELSE} {$ELSE}
{$IFDEF WINDOWS} {$IFDEF WINDOWS}
cDefaultFont = 'Arial'; cDefaultFont = 'ArialMT';
{$ELSE} {$ELSE}
cDefaultFont = 'Helvetica'; cDefaultFont = 'Helvetica';
{$ENDIF} {$ENDIF}