From: Patrick McCarty Date: Sat, 1 Aug 2009 22:10:12 +0000 (-0700) Subject: SVG backend: do not use style attribute for dashed-line X-Git-Tag: release/2.13.4-1~224 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7e544ef4f93644a6a676c39a553e5bb437657bba;p=lilypond.git SVG backend: do not use style attribute for dashed-line --- diff --git a/scm/output-svg.scm b/scm/output-svg.scm index e91b5181b5..bc6568a4c7 100644 --- a/scm/output-svg.scm +++ b/scm/output-svg.scm @@ -325,7 +325,8 @@ `(r . ,radius))) (define (dashed-line thick on off dx dy phase) - (draw-line thick 0 0 dx dy `(style . ,(format "stroke-dasharray:~a,~a;" on off)))) + (draw-line thick 0 0 dx dy + `(stroke-dasharray . ,(format "~a,~a" on off)))) (define (draw-line thick x1 y1 x2 y2 . alist) (apply entity 'line ""