svx/source/customshapes/EnhancedCustomShapeEngine.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit f141da6997f55b0934edb7547c169067817904ad Author: Mike Kaganski <[email protected]> AuthorDate: Wed Jan 28 06:32:10 2026 +0100 Commit: Mike Kaganski <[email protected]> CommitDate: Wed Jan 28 13:07:05 2026 +0100 Use NbcShear in EnhancedCustomShapeEngine::render2 Other calls on this object are already non-broadcasting. Change-Id: I767ac914dd3373fd0709135ebd24bc12c8bb3eb3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/198248 Tested-by: Jenkins Reviewed-by: Mike Kaganski <[email protected]> diff --git a/svx/source/customshapes/EnhancedCustomShapeEngine.cxx b/svx/source/customshapes/EnhancedCustomShapeEngine.cxx index 1f90674434cf..770305d0fd25 100644 --- a/svx/source/customshapes/EnhancedCustomShapeEngine.cxx +++ b/svx/source/customshapes/EnhancedCustomShapeEngine.cxx @@ -280,7 +280,7 @@ rtl::Reference<SdrObject> EnhancedCustomShapeEngine::render2() const nTan = -nTan; } - xRenderedShape->Shear(mpCustomShape->GetSnapRect().Center(), nShearAngle, nTan, false); + xRenderedShape->NbcShear(mpCustomShape->GetSnapRect().Center(), nShearAngle, nTan, false); } if(nRotateAngle ) xRenderedShape->NbcRotate(mpCustomShape->GetSnapRect().Center(), nRotateAngle);
