From 191406ce868ceac30b454e8ed0e1568c587e4e88 Mon Sep 17 00:00:00 2001 From: erg Date: Thu, 28 Jul 2005 21:53:22 +0000 Subject: [PATCH] Fix rest of bug 754 - ellipse size has to be scaled --- lib/common/svggen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/common/svggen.c b/lib/common/svggen.c index 08fce906a..2a5c82841 100644 --- a/lib/common/svggen.c +++ b/lib/common/svggen.c @@ -774,8 +774,8 @@ static void svg_ellipse(point p, int rx, int ry, int filled) rx = ry; ry = t; } - mp.x = rx; - mp.y = ry; + mp.x = Scale*rx; + mp.y = Scale*ry; svg_printf(" rx=\"%d\" ry=\"%d\"/>\n", mp.x, mp.y); } -- 2.40.0