[Libreoffice-commits] core.git: oox/source

Andras Timar andras.timar at collabora.com
Wed Dec 28 13:03:54 UTC 2016


 oox/source/export/drawingml.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 54d07bdc22067cead094b994491e5c57e1591d76
Author: Andras Timar <andras.timar at collabora.com>
Date:   Wed Dec 28 09:56:59 2016 +0100

    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 at libreoffice.org>
    Reviewed-by: Andras Timar <andras.timar at collabora.com>

diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index 2568902..7de9e39 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);


More information about the Libreoffice-commits mailing list