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 29b467c commit 8fe2bc5Copy full SHA for 8fe2bc5
src/vector/svg/Renderer.js
@@ -1042,6 +1042,7 @@ acgraph.vector.svg.Renderer.prototype.applyFill = function(element) {
1042
imageFill.id(); // if the identifier of the fill is still empty, it will be generated
1043
imageFill.parent(element.getStage()).render();
1044
this.setAttribute_(element.domElement(), 'fill', pathPrefix + imageFill.id() + ')');
1045
+ this.setAttribute_(element.domElement(), 'fill-opacity', goog.isDef(fill['opacity']) ? fill['opacity'] : 1);
1046
}
1047
} else if (fill instanceof acgraph.vector.HatchFill) {
1048
var hatch = /** @type {acgraph.vector.HatchFill} */(fill);
0 commit comments