diff --git a/lib/draw/BpmnRenderer.js b/lib/draw/BpmnRenderer.js index 75069640..b1f02f6d 100644 --- a/lib/draw/BpmnRenderer.js +++ b/lib/draw/BpmnRenderer.js @@ -912,8 +912,8 @@ function BpmnRenderer(events, styles, pathMap) { 'bpmn:InclusiveGateway': function(p, element) { var diamond = drawDiamond(p, element.width, element.height); - /* circle path */ - drawCircle(p, element.width, element.height, element.height * 0.24, { + /* circle path */ + drawCircle(p, element.width, element.height, element.height * 0.24, { strokeWidth: 2.5, fill: 'none' }); @@ -1214,16 +1214,16 @@ function BpmnRenderer(events, styles, pathMap) { cancel = semantic.cancelActivity; var attrs = { - strokeLinecap: 'round', strokeWidth: 1 }; if (!cancel) { attrs.strokeDasharray = '6'; + attrs.strokeLinecap = 'round'; } var outer = renderer('bpmn:Event')(p, element, attrs); - /* inner path */ drawCircle(p, element.width, element.height, INNER_OUTER_DIST, attrs); + /* inner path */ drawCircle(p, element.width, element.height, INNER_OUTER_DIST, assign(attrs, { fill: 'none' })); renderEventContent(element, p);