From: erg Date: Thu, 9 Sep 2010 17:22:18 +0000 (+0000) Subject: Fix commit of incorrect earlier file X-Git-Tag: LAST_LIBGRAPH~32^2~1195 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1337b1c6f7c6b8607c673159abd5d05767fcda97;p=graphviz Fix commit of incorrect earlier file --- diff --git a/plugin/core/gvrender_core_svg.c b/plugin/core/gvrender_core_svg.c index 4ea7f4b32..15198140e 100644 --- a/plugin/core/gvrender_core_svg.c +++ b/plugin/core/gvrender_core_svg.c @@ -112,7 +112,7 @@ static void svg_grstyle(GVJ_t * job, int filled) gvprintf(job, "\" stroke-dasharray=\"%s", sdotarray); } if (obj->pencolor.type == RGBA_BYTE && obj->pencolor.u.rgba[3] > 0 && obj->pencolor.u.rgba[3] < 255) - gvprintf(job, "\" stroke-opacity=\"%f", ((float)obj->fillcolor.u.rgba[3]/255.0)); + gvprintf(job, "\" stroke-opacity=\"%f", ((float)obj->pencolor.u.rgba[3]/255.0)); gvputs(job, "\""); }