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 8e0677a commit 42cdd55Copy full SHA for 42cdd55
components/painter/painter.js
@@ -226,6 +226,10 @@ Component({
226
doView.css = Object.assign({}, doView.css, newVal.css)
227
}
228
229
+ (newVal && newVal.url !== doView.url) && (doView.url = newVal.url);
230
+ (newVal && newVal.text !== doView.text) && (doView.text = newVal.text);
231
+ (newVal && newVal.content !== doView.content) && (doView.content = newVal.content);
232
+
233
const draw = {
234
width: this.currentPalette.width,
235
height: this.currentPalette.height,
0 commit comments