77041cdec2060274397a745305d0b575aa7ac731 braney Sat Dec 19 10:00:28 2020 -0800 re-connect the postscript output to the font setting, which had disappeared a while back. #26681 diff --git src/inc/psGfx.h src/inc/psGfx.h index 13c5941..e8464d6 100644 --- src/inc/psGfx.h +++ src/inc/psGfx.h @@ -113,18 +113,18 @@ /* Draw Bezier curve specified by 4 points: first (p1) and last (p4) * and 2 control points (p2, p3) */ void psSetDash(struct psGfx *ps, boolean on); /* Set dashed line mode on or off. If set on, show two points marked, with one point of space */ char * convertEpsToPdf(char *epsFile); /* Convert EPS to PDF and return filename, or NULL if failure. */ void psLineTo(struct psGfx *ps, double x, double y); /* Draw line from current point to given point, * and make given point new current point. */ void psCircle(struct psGfx *ps, double x, double y, double rad, boolean filled); -void psSetFont(struct psGfx *ps, char *fontName); +void psSetFont(struct psGfx *ps, char *fontName, double fontSize ); #endif /* PSGFX_H */