[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - librelogo/source

László Németh laszlo.nemeth at collabora.com
Sat Jun 27 12:11:20 PDT 2015


 librelogo/source/LibreLogo/LibreLogo.py |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit 1054fe84e7eeb93c3d0f52e886a0d1c04536ac8c
Author: László Németh <laszlo.nemeth at collabora.com>
Date:   Sat Jun 27 04:04:15 2015 +0200

    tdf#92368 fix saved positions of arcs, segments drawn by LibreLogo
    
    Change-Id: I8f622680ddd31d0a7048c14c85932ae495ae0f5e
    Reviewed-on: https://gerrit.libreoffice.org/16534
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Adolfo Jayme Barrientos <fitojb at ubuntu.com>

diff --git a/librelogo/source/LibreLogo/LibreLogo.py b/librelogo/source/LibreLogo/LibreLogo.py
index 327648c..081431c 100644
--- a/librelogo/source/LibreLogo/LibreLogo.py
+++ b/librelogo/source/LibreLogo/LibreLogo.py
@@ -1064,6 +1064,7 @@ def __boxshape__(shapetype, l):
     if shapetype == "Rectangle" and len(l) > 2:
         shape.CornerRadius = (l[2] * __PT_TO_TWIP__) / __MM10_TO_TWIP__
     elif shapetype == "Ellipse" and len(l) > 2:
+        oldBoundRect = shape.BoundRect
         try:
             shape.CircleKind = __SECTION__
             shape.CircleStartAngle = (-l[3] - 270) * 100
@@ -1071,6 +1072,9 @@ def __boxshape__(shapetype, l):
             shape.CircleKind = [__FULL__, __SECTION__, __CUT__, __ARC__][l[4]]
         except:
             pass
+        pos.X = pos.X + shape.BoundRect.X - oldBoundRect.X
+        pos.Y = pos.Y + shape.BoundRect.Y - oldBoundRect.Y
+        shape.setPosition(pos)
     __visible__(shape, True)
     __removeshape__(__ACTUAL__)
     _.shapecache[__ACTUAL__] = shape


More information about the Libreoffice-commits mailing list