fix(bpmnrenderer): fix marker paths
The path format for some marker was incorrect, fixed for all SVG viewer that fails.
This commit is contained in:
parent
1342c1aca0
commit
fd9fcefeb4
|
@ -206,21 +206,21 @@ function PathMap(Snap) {
|
||||||
widthElements: [10]
|
widthElements: [10]
|
||||||
},
|
},
|
||||||
'MARKER_SUB_PROCESS': {
|
'MARKER_SUB_PROCESS': {
|
||||||
d: 'm{mx} {my}, m 7,2 l 0,10 m -5,-5 l 10,0',
|
d: 'm{mx},{my} m 7,2 l 0,10 m -5,-5 l 10,0',
|
||||||
height: 10,
|
height: 10,
|
||||||
width: 10,
|
width: 10,
|
||||||
heightElements: [],
|
heightElements: [],
|
||||||
widthElements: []
|
widthElements: []
|
||||||
},
|
},
|
||||||
'MARKER_PARALLEL': {
|
'MARKER_PARALLEL': {
|
||||||
d: 'm{mx} {my}, m 3,2 l 0,10 m 3,-10 l 0,10 m 3,-10 l 0,10',
|
d: 'm{mx},{my} m 3,2 l 0,10 m 3,-10 l 0,10 m 3,-10 l 0,10',
|
||||||
height: 10,
|
height: 10,
|
||||||
width: 10,
|
width: 10,
|
||||||
heightElements: [],
|
heightElements: [],
|
||||||
widthElements: []
|
widthElements: []
|
||||||
},
|
},
|
||||||
'MARKER_SEQUENTIAL': {
|
'MARKER_SEQUENTIAL': {
|
||||||
d: 'm{mx} {my}, m 0,3 l 10,0 m -10,3 l 10,0 m -10,3 l 10,0',
|
d: 'm{mx},{my} m 0,3 l 10,0 m -10,3 l 10,0 m -10,3 l 10,0',
|
||||||
height: 10,
|
height: 10,
|
||||||
width: 10,
|
width: 10,
|
||||||
heightElements: [],
|
heightElements: [],
|
||||||
|
|
Loading…
Reference in New Issue