fix(draw): remove inner boundary event fill

This commit is contained in:
Nico Rehwaldt 2015-07-14 16:20:32 +02:00
parent 75dc681d46
commit 7eb6d7af46

View File

@ -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);