diff options
author | Paul Trojahn <paul.trojahn@gmail.com> | 2017-09-23 15:17:13 +0200 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2017-09-26 23:21:10 +0200 |
commit | 465092047d5fa6ec6dd369372e712d76554570ff (patch) | |
tree | fed5f427c41c35f4be5be69bf382b90e166afe01 /oox | |
parent | 19f41fce02b83e9a076b5f97c22b5a8926fb6144 (diff) |
PPTX Fix export of rotated group shapes
The rotation is already applied to the child shapes and must not be
added to the group.
Change-Id: Ic564cbcf31a81a248878f0179fdd21144f076b61
Reviewed-on: https://gerrit.libreoffice.org/42765
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/shapes.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/shapes.cxx b/oox/source/export/shapes.cxx index 05ea273d2612..f1073262da70 100644 --- a/oox/source/export/shapes.cxx +++ b/oox/source/export/shapes.cxx @@ -528,7 +528,7 @@ ShapeExport& ShapeExport::WriteGroupShape(const uno::Reference<drawing::XShape>& // visual properties pFS->startElementNS(mnXmlNamespace, XML_grpSpPr, FSEND); - WriteShapeTransformation(xShape, XML_a); + WriteShapeTransformation(xShape, XML_a, false, false, true); pFS->endElementNS(mnXmlNamespace, XML_grpSpPr); uno::Reference<drawing::XShapes> xGroupShape(xShape, uno::UNO_QUERY_THROW); |