mirror of
https://github.com/konvajs/konva.git
synced 2025-06-28 04:42:02 +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._centroid = true;
|
||||||
Arc.prototype.className = 'Arc';
|
Arc.prototype.className = 'Arc';
|
||||||
Arc.prototype._attrsAffectingSize = ['innerRadius', 'outerRadius'];
|
Arc.prototype._attrsAffectingSize = [
|
||||||
|
'innerRadius',
|
||||||
|
'outerRadius',
|
||||||
|
'angle',
|
||||||
|
'clockwise',
|
||||||
|
];
|
||||||
_registerNode(Arc);
|
_registerNode(Arc);
|
||||||
|
|
||||||
// add getters setters
|
// add getters setters
|
||||||
|
Loading…
Reference in New Issue
Block a user