Skip to content

Commit

Permalink
feat(draw): improve intermediate event look
Browse files Browse the repository at this point in the history
Slightly improves visual presence.
  • Loading branch information
nikku committed Feb 2, 2023
1 parent 0338694 commit 3c8436c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/draw/BpmnRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -838,14 +838,14 @@ export default function BpmnRenderer(
},
'bpmn:IntermediateEvent': function(parentGfx, element) {
var outer = renderer('bpmn:Event')(parentGfx, element, {
strokeWidth: 1,
strokeWidth: 1.5,
fill: getFillColor(element, defaultFillColor),
stroke: getStrokeColor(element, defaultStrokeColor)
});

/* inner */
drawCircle(parentGfx, element.width, element.height, INNER_OUTER_DIST, {
strokeWidth: 1,
strokeWidth: 1.5,
fill: getFillColor(element, 'none'),
stroke: getStrokeColor(element, defaultStrokeColor)
});
Expand Down Expand Up @@ -1574,7 +1574,7 @@ export default function BpmnRenderer(
cancel = semantic.cancelActivity;

var attrs = {
strokeWidth: 1,
strokeWidth: 1.5,
fill: getFillColor(element, defaultFillColor),
stroke: getStrokeColor(element, defaultStrokeColor)
};
Expand Down

0 comments on commit 3c8436c

Please sign in to comment.