diff options
author | Muthu Subramanian <sumuthu@suse.com> | 2012-07-12 19:03:47 +0530 |
---|---|---|
committer | Muthu Subramanian <sumuthu@suse.com> | 2012-07-12 19:07:38 +0530 |
commit | e647cc9d895005c5bed2fec98c73ca28ccd925ae (patch) | |
tree | 56d0f6ca4d094231733a7280a033fec28cfe03b5 | |
parent | 38b60f6bae3f687cc800b134f6e37674a3a73dab (diff) |
fdo#45260: Objects having line thickness misplaced while pasting.
Even with the proposed fix of commit id d999ae10 it still seems
to be broken with reference to i#112978 . Maybe a better way
of fixing it. Hence reverting this patch partially to fix fdo#45260
-rw-r--r-- | sd/source/ui/view/sdview2.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sd/source/ui/view/sdview2.cxx b/sd/source/ui/view/sdview2.cxx index add2740361cc..5811fa18de07 100644 --- a/sd/source/ui/view/sdview2.cxx +++ b/sd/source/ui/view/sdview2.cxx @@ -130,7 +130,9 @@ struct SdNavigatorDropEvent : public ExecuteDropEvent // #112978# need to use GetAllMarkedBoundRect instead of GetAllMarkedRect to get // fat lines correctly - const Rectangle aMarkRect( GetAllMarkedBoundRect() ); + // This seems to be broken on LibreOffice. So reverted this temporarily + // to fix fdo#45260 + const Rectangle aMarkRect( GetAllMarkedRect() ); TransferableObjectDescriptor aObjDesc; String aDisplayName; SdrOle2Obj* pSdrOleObj = NULL; |