From 6bd03a44526846b18f70d8ab0820dfee8837e494 Mon Sep 17 00:00:00 2001 From: "Emden R. Gansner" Date: Thu, 17 Apr 2014 15:17:03 -0400 Subject: [PATCH] Fix point shape to use penwidth attribute --- lib/common/shapes.c | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.50.1