From 99a0ab64cba065db6ba14e167f9a05481c227e9c Mon Sep 17 00:00:00 2001 From: "Emden R. Gansner" Date: Fri, 13 Sep 2013 14:49:51 -0400 Subject: [PATCH] Fix bug 2367 --- plugin/core/gvrender_core_dot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/core/gvrender_core_dot.c b/plugin/core/gvrender_core_dot.c index 8fd91aca2..25578cd4d 100644 --- a/plugin/core/gvrender_core_dot.c +++ b/plugin/core/gvrender_core_dot.c @@ -705,7 +705,7 @@ static void xdot_gradient_fillcolor (GVJ_t* job, int filled, pointf* A, int n) } else { c1.x = G[0].x + (r2/4) * cos(angle); - c1.y = G[0].y - (r2/4) * sin(angle); + c1.y = G[0].y + (r2/4) * sin(angle); } c2.x = G[0].x; c2.y = G[0].y; -- 2.50.0