fix(BpmnRenderer): fix messageflow marker positioning
This commit is contained in:
parent
ba94724225
commit
14850f753f
|
@ -63,17 +63,17 @@ function BpmnRenderer(events, styles, bpmnRegistry, pathMap) {
|
||||||
|
|
||||||
addMarker('messageflow-start',
|
addMarker('messageflow-start',
|
||||||
paper
|
paper
|
||||||
.circle(4, 4, 4)
|
.circle(5, 5, 5)
|
||||||
.attr({
|
.attr({
|
||||||
fill: 'white',
|
fill: 'white',
|
||||||
stroke: 'black',
|
stroke: 'black',
|
||||||
strokeWidth: 1,
|
strokeWidth: 1,
|
||||||
strokeDasharray: '1,0'
|
strokeDasharray: '1,0'
|
||||||
})
|
})
|
||||||
.marker(0, 0, 12, 12, 6, 6)
|
.marker(0, 0, 10, 10, 5, 5)
|
||||||
.attr({
|
.attr({
|
||||||
markerWidth: 10,
|
markerWidth: 12,
|
||||||
markerHeight: 10,
|
markerHeight: 12,
|
||||||
orient: 'auto',
|
orient: 'auto',
|
||||||
overflow: 'visible'
|
overflow: 'visible'
|
||||||
}));
|
}));
|
||||||
|
@ -88,10 +88,10 @@ function BpmnRenderer(events, styles, bpmnRegistry, pathMap) {
|
||||||
strokeLinecap: 'round',
|
strokeLinecap: 'round',
|
||||||
strokeDasharray: '1,0'
|
strokeDasharray: '1,0'
|
||||||
})
|
})
|
||||||
.marker(0, 0, 12, 12, 12, 6)
|
.marker(0, 0, 10, 10, 10, 5)
|
||||||
.attr({
|
.attr({
|
||||||
markerWidth: 10,
|
markerWidth: 12,
|
||||||
markerHeight: 10,
|
markerHeight: 12,
|
||||||
orient: 'auto',
|
orient: 'auto',
|
||||||
overflow: 'visible'
|
overflow: 'visible'
|
||||||
}));
|
}));
|
||||||
|
|
Loading…
Reference in New Issue