diff options
author | Sarper Akdemir <sarper.akdemir@collabora.com> | 2022-01-03 05:45:17 +0300 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-01-11 10:05:15 +0100 |
commit | ebc5d02a0d4a716fb4efb4ce17a622eb21cf7c9c (patch) | |
tree | 5e573c7028ab4716a56662d06634306a1244da85 /sd/source | |
parent | f1fb66b02d72d4b2e6f3321fa5426c9f7c04c48c (diff) |
tdf#146534 pptx import: make Z rotation work with rotation transform
Expands previous idea from a9c5c0d814a266096483572b84c72875ef8efd77
(tdf#133037 OOXML shape import: camera rotation along Z)
and uses it also for shapes that have a true bUseRotationTransform flag
Also fixes same Z rotation exporting twice from InteropGrabBag to
both spPr and textBody causing text overrotating on roundtrip.
Change-Id: If0f192af029ca86b932a63613f961be1f5003c5b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127880
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Signed-off-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128219
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/filter/eppt/pptx-epptooxml.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx index d5787d6f4cb7..1e175d8bc564 100644 --- a/sd/source/filter/eppt/pptx-epptooxml.cxx +++ b/sd/source/filter/eppt/pptx-epptooxml.cxx @@ -1733,7 +1733,7 @@ ShapeExport& PowerPointShapeExport::WritePlaceholderShape(const Reference< XShap bHas3DEffectinShape = true; if( bHas3DEffectinShape) - WriteShape3DEffects( xProps ); + Write3DEffects( xProps, /*bIsText=*/false ); } mpFS->endElementNS(XML_p, XML_spPr); |