Skip to content

Commit c7dfb2d

Browse files
mikekuceramaxkfranz
authored andcommitted
Cherry-pick to master: Remove call to isBundledBezier() in checkBoundsTrigger()
Fixes #3299 @mikekucera
1 parent a5e37be commit c7dfb2d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/style/apply.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -821,9 +821,7 @@ styfn.checkBoundsTrigger = function( ele, name, fromValue, toValue ){
821821
&& ( name === 'curve-style' && (fromValue === 'bezier' || toValue === 'bezier') )
822822
){
823823
ele.parallelEdges().forEach(pllEdge => {
824-
if( pllEdge.isBundledBezier() ){
825-
pllEdge.dirtyBoundingBoxCache();
826-
}
824+
pllEdge.dirtyBoundingBoxCache();
827825
});
828826
}
829827

0 commit comments

Comments
 (0)