Pārlūkot izejas kodu

* Set default font to postscript name

git-svn-id: trunk@43807 -
michael 5 gadi atpakaļ
vecāks
revīzija
3418f0e977
1 mainītis faili ar 4 papildinājumiem un 1 dzēšanām
  1. 4 1
      packages/fcl-report/src/fpreport.pp

+ 4 - 1
packages/fcl-report/src/fpreport.pp

@@ -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}