From 7296b98445f270beb73cf07d22fc4263fdaff53f Mon Sep 17 00:00:00 2001 From: Bjoern Michaelsen Date: Fri, 25 Mar 2016 01:44:19 +0100 Subject: fix another involuntary behaviour change from 0c5cbcd7 Change-Id: Idd8e48777b2a5e8e91754ec0afa9dd5b50d8bf00 --- sw/source/core/layout/flycnt.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sw/source/core/layout/flycnt.cxx b/sw/source/core/layout/flycnt.cxx index f95b4a6e13ac..cafb5c30403d 100644 --- a/sw/source/core/layout/flycnt.cxx +++ b/sw/source/core/layout/flycnt.cxx @@ -1217,6 +1217,8 @@ void SwFlyAtContentFrame::SetAbsPos( const Point &rNew ) nY = pCnt->Frame().Left() - rNew.X(); if ( bVertL2R ) nY = -nY; + else + nY += pCnt->Frame().Width() - Frame().Width(); nY -= pCnt->GetUpperSpaceAmountConsideredForPrevFrameAndPageGrid(); } else -- cgit