We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 902de0d commit e50534eCopy full SHA for e50534e
src/shapes/shape.ts
@@ -78,7 +78,7 @@ function createSetter(key, options: ShapePropertyOptions) {
78
const oldValue = this[realKey];
79
const actualVal = options.converter ? options.converter(newVal) : newVal;
80
this[realKey] = actualVal;
81
- if (options.nonPaintProp !== true) {
+ if (this.handlesPaint !== true && options.nonPaintProp !== true) {
82
if (options.paintSetter) {
83
options.paintSetter(this.paint, actualVal);
84
} else if (options.paintSetterName) {
0 commit comments