summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svggnode.cxx
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2023-07-10 14:46:34 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2023-07-10 16:54:06 +0200
commit56039daae4a436d7ea1b093a02cf0e8ad3bda4a9 (patch)
tree0b4e73635d20fe250d26146ce7b6bd9033185ff4 /svgio/source/svgreader/svggnode.cxx
parent3d5b5914ef56395a8ba3d4c0a2eff8a5c52046b4 (diff)
tdf#149673: only check opacity from parent...
... if it has a local css style Because it's the first in the style stack Partially reverts 3e0e67a152e9631574e28dacb6e06a96f03ebca2 "tdf#155932: tdf#97717: only apply opacity when primitive" Change-Id: I6a6bf08a519c84ac58c6111fd7da308cbf8a3021 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154270 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'svgio/source/svgreader/svggnode.cxx')
-rw-r--r--svgio/source/svgreader/svggnode.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svgio/source/svgreader/svggnode.cxx b/svgio/source/svgreader/svggnode.cxx
index e59db2972e13..d833a6fa92c4 100644
--- a/svgio/source/svgreader/svggnode.cxx
+++ b/svgio/source/svgreader/svggnode.cxx
@@ -97,7 +97,7 @@ namespace svgio::svgreader
if(!aContent.empty())
{
- pStyle->add_postProcess(rTarget, std::move(aContent), getTransform(), false);
+ pStyle->add_postProcess(rTarget, std::move(aContent), getTransform());
}
}
}