diff options
author | Andras Timar <andras.timar@collabora.com> | 2016-12-28 09:56:59 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2016-12-28 13:03:32 +0000 |
commit | 54d07bdc22067cead094b994491e5c57e1591d76 (patch) | |
tree | de649aea61f80ba564b6d9db671a8e1fc029db34 | |
parent | 8d5d74f585555e4c00da9f7c7616f321dac12f22 (diff) |
tdf#104539 dir attribute of outerShdw has to be non-negative
Change-Id: Ic6f1c8555eb8d137ced2f4e87baa866df84c69ac
Reviewed-on: https://gerrit.libreoffice.org/32467
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r-- | oox/source/export/drawingml.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx index 2568902aaf15..7de9e39c52e1 100644 --- a/oox/source/export/drawingml.cxx +++ b/oox/source/export/drawingml.cxx @@ -2982,7 +2982,7 @@ void DrawingML::WriteShapeEffects( const Reference< XPropertySet >& rXPropSet ) aShadowAttribsGrabBag[0].Name = "dist"; aShadowAttribsGrabBag[0].Value = Any(static_cast< sal_Int32 >(sqrt(dX*dX + dY*dY) * 360)); aShadowAttribsGrabBag[1].Name = "dir"; - aShadowAttribsGrabBag[1].Value = Any(static_cast< sal_Int32 >(atan2(dY,dX) * 180 * 60000 / M_PI)); + aShadowAttribsGrabBag[1].Value = Any((static_cast< sal_Int32 >(atan2(dY,dX) * 180 * 60000 / M_PI) + 21600000) % 21600000); aShadowGrabBag[0].Name = "Attribs"; aShadowGrabBag[0].Value = Any(aShadowAttribsGrabBag); |