Skip to content

Commit b39db33

Browse files
committed
Remove call to isBundledBezier() in checkBoundsTrigger()
Fixes #3299
1 parent 40fec5a commit b39db33

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)