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 1fba8af commit ee215a8Copy full SHA for ee215a8
src/core/CoreNode.ts
@@ -2117,10 +2117,10 @@ export class CoreNode extends EventEmitter {
2117
const has = value > 0;
2118
this.hasColorProps = has;
2119
2120
- if (p.colorTop !== value) p.colorTop = value;
2121
- if (p.colorBottom !== value) p.colorBottom = value;
2122
- if (p.colorLeft !== value) p.colorLeft = value;
2123
- if (p.colorRight !== value) p.colorRight = value;
+ if (p.colorTop !== value) this.colorTop = value;
+ if (p.colorBottom !== value) this.colorBottom = value;
+ if (p.colorLeft !== value) this.colorLeft = value;
+ if (p.colorRight !== value) this.colorRight = value;
2124
2125
this.setUpdateType(UpdateType.PremultipliedColors);
2126
}
0 commit comments