From c5b235e16287d786e036424c6229bcee5579684b Mon Sep 17 00:00:00 2001 From: László Németh Date: Sat, 27 Jun 2015 04:04:15 +0200 Subject: tdf#92368 fix saved positions of arcs, segments drawn by LibreLogo Change-Id: I8f622680ddd31d0a7048c14c85932ae495ae0f5e --- librelogo/source/LibreLogo/LibreLogo.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'librelogo') diff --git a/librelogo/source/LibreLogo/LibreLogo.py b/librelogo/source/LibreLogo/LibreLogo.py index 327648c31eb6..081431cf2f48 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 -- cgit