summaryrefslogtreecommitdiff
path: root/filter/source/svg/svgexport.cxx
diff options
context:
space:
mode:
authorLászló Németh <nemeth@numbertext.org>2014-05-23 01:11:07 +0200
committerLászló Németh <nemeth@numbertext.org>2014-05-23 01:11:07 +0200
commit8778b5b37e919384f3dbcf51e0dde0d26fe5fc39 (patch)
treec7a5ed934b9ce5c2a99d7dc700c80c8bef38b967 /filter/source/svg/svgexport.cxx
parent6d06aa8ba83b7629603cd86cf14a63c432ce268f (diff)
fdo#79078 restore transparency in SVG export
Change-Id: I5bdf6c3b313a73126cb692e5101836f424a2fc08
Diffstat (limited to 'filter/source/svg/svgexport.cxx')
-rw-r--r--filter/source/svg/svgexport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/svg/svgexport.cxx b/filter/source/svg/svgexport.cxx
index 244d08b8ff01..00016cd324c4 100644
--- a/filter/source/svg/svgexport.cxx
+++ b/filter/source/svg/svgexport.cxx
@@ -353,8 +353,8 @@ SVGExport::SVGExport(
// Native Decoration
mbIsUseNativeTextDecoration = mbIsUseTinyProfile ? sal_False : aFilterDataHashMap.getUnpackedValueOrDefault(SVG_PROP_NATIVEDECORATION, sal_False);
- // Tiny Opacity
- mbIsUseOpacity = mbIsUseTinyProfile ? sal_False : aFilterDataHashMap.getUnpackedValueOrDefault(SVG_PROP_OPACITY, sal_True);
+ // Tiny Opacity (supported from SVG Tiny 1.2)
+ mbIsUseOpacity = aFilterDataHashMap.getUnpackedValueOrDefault(SVG_PROP_OPACITY, sal_True);
// Positioned Characters (Seems to be experimental, as it was always initialized with false)
mbIsUsePositionedCharacters = aFilterDataHashMap.getUnpackedValueOrDefault(SVG_PROP_POSITIONED_CHARACTERS, sal_False);