Skip to content

Commit

Permalink
Replace odd space char
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkfranz committed Jan 13, 2021
1 parent ed35200 commit d350a16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extensions/renderer/canvas/drawing-nodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ CRp.drawNode = function( context, node, shiftToOriginWithBb, drawLabel = true, s

for( let i = 0; i < image.length; i++ ){
const bgContainment = node.cy().style().getIndexedStyle(node, 'background-image-containment', 'value', i);
if( inside && bgContainment === 'over' || !inside && bgContainment === 'inside' ){
if( inside && bgContainment === 'over' || !inside && bgContainment === 'inside' ){
totalCompleted++;
continue;
}
Expand Down

0 comments on commit d350a16

Please sign in to comment.