From: Emden R. Gansner Date: Thu, 17 Apr 2014 19:17:03 +0000 (-0400) Subject: Fix point shape to use penwidth attribute X-Git-Tag: TRAVIS_CI_BUILD_EXPERIMENTAL~224 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6bd03a44526846b18f70d8ab0820dfee8837e494;p=graphviz Fix point shape to use penwidth attribute --- diff --git a/lib/common/shapes.c b/lib/common/shapes.c index 959110c37..3cb2cfb54 100644 --- a/lib/common/shapes.c +++ b/lib/common/shapes.c @@ -3074,6 +3074,8 @@ static void point_gencode(GVJ_t * job, node_t * n) gvrender_set_style(job, point_style); else gvrender_set_style(job, &point_style[1]); + if (N_penwidth) + gvrender_set_penwidth(job, late_double(n, N_penwidth, 1.0, 0.0)); if (ND_gui_state(n) & GUI_STATE_ACTIVE) { color = late_nnstring(n, N_activepencolor, DEFAULT_ACTIVEPENCOLOR);