From c60efd484afca9578585a3156fb0730b0595c7aa Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Wed, 12 Oct 2016 14:56:26 -0400 Subject: [PATCH] fix #132: stroke-dashoffset doesn't stick when scalar is redrawn --- pd/src/g_template.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pd/src/g_template.c b/pd/src/g_template.c index c06fba701..64ba1a442 100644 --- a/pd/src/g_template.c +++ b/pd/src/g_template.c @@ -3836,6 +3836,11 @@ static void svg_togui(t_svg *x, t_template *template, t_word *data) gui_s("stroke-opacity"); gui_f(fielddesc_getcoord(&x->x_strokeopacity.a_attr, template, data, 1)); } + if (x->x_strokedashoffset.a_flag) + { + gui_s("stroke-dashoffset"); + gui_f(fielddesc_getcoord(&x->x_strokedashoffset.a_attr, template, data, 1)); + } if (x->x_strokelinecap.a_flag) { gui_s("stroke-linecap"); -- GitLab