mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 03:13:41 +08:00
fix: Transformer doesn't change when the angle of Arc changes
This commit is contained in:
parent
dd19e32ba8
commit
13fc7da406
@ -98,7 +98,12 @@ export class Arc extends Shape<ArcConfig> {
|
||||
|
||||
Arc.prototype._centroid = true;
|
||||
Arc.prototype.className = 'Arc';
|
||||
Arc.prototype._attrsAffectingSize = ['innerRadius', 'outerRadius'];
|
||||
Arc.prototype._attrsAffectingSize = [
|
||||
'innerRadius',
|
||||
'outerRadius',
|
||||
'angle',
|
||||
'clockwise',
|
||||
];
|
||||
_registerNode(Arc);
|
||||
|
||||
// add getters setters
|
||||
|
Loading…
Reference in New Issue
Block a user