From 73e11fc5bec6bb6b82ae6d27b82c1b1d0e9a7dfa Mon Sep 17 00:00:00 2001 From: ellson Date: Wed, 19 Jan 2011 15:08:05 +0000 Subject: [PATCH] fix for extraneous line segment when drawing ellipses --- plugin/pango/gvrender_pango.c | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/pango/gvrender_pango.c b/plugin/pango/gvrender_pango.c index 41d835611..457aa1307 100644 --- a/plugin/pango/gvrender_pango.c +++ b/plugin/pango/gvrender_pango.c @@ -274,6 +274,7 @@ if (ry < RMIN) ry = RMIN; cairo_translate(cr, A[0].x, -A[0].y); cairo_scale(cr, rx, ry); + cairo_move_to(cr, 1., 0.); cairo_arc(cr, 0., 0., 1., 0., 2 * M_PI); cairo_set_matrix(cr, &matrix); -- 2.40.0