You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2023/02/21 17:49:17 UTC

[openoffice] branch AOO42X updated: Elements on cropmarker share borders. Separate them from each other.

This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/AOO42X by this push:
     new a19963d92d Elements on cropmarker share borders. Separate them from each other.
a19963d92d is described below

commit a19963d92d144e3358e775cadbf6773727d9d0a6
Author: mseidel <ms...@apache.org>
AuthorDate: Tue Feb 21 16:38:18 2023 +0100

    Elements on cropmarker share borders. Separate them from each other.
    
    (cherry picked from commit 062a78fddc867c36b9b38674f01893e3600cd6d3)
---
 main/default_images/svx/res/cropmarkers.png    | Bin 968 -> 645 bytes
 main/default_images/svx/res/cropmarkers2.png   | Bin 1205 -> 864 bytes
 main/default_images/svx/res/cropmarkersACC.png | Bin 1013 -> 688 bytes
 main/svx/source/svdraw/svdhdl.cxx              |   6 +++---
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/main/default_images/svx/res/cropmarkers.png b/main/default_images/svx/res/cropmarkers.png
index 3048e01921..c59af51a2e 100644
Binary files a/main/default_images/svx/res/cropmarkers.png and b/main/default_images/svx/res/cropmarkers.png differ
diff --git a/main/default_images/svx/res/cropmarkers2.png b/main/default_images/svx/res/cropmarkers2.png
index c0f37ef800..9d5ed79108 100644
Binary files a/main/default_images/svx/res/cropmarkers2.png and b/main/default_images/svx/res/cropmarkers2.png differ
diff --git a/main/default_images/svx/res/cropmarkersACC.png b/main/default_images/svx/res/cropmarkersACC.png
index 27ccf021ff..6cd7c28646 100644
Binary files a/main/default_images/svx/res/cropmarkersACC.png and b/main/default_images/svx/res/cropmarkersACC.png differ
diff --git a/main/svx/source/svdraw/svdhdl.cxx b/main/svx/source/svdraw/svdhdl.cxx
index cb23f2c7ec..8db0f62958 100644
--- a/main/svx/source/svdraw/svdhdl.cxx
+++ b/main/svx/source/svdraw/svdhdl.cxx
@@ -2348,12 +2348,12 @@ BitmapEx SdrCropHdl::GetBitmapForHandle( const BitmapEx& rBitmap, int nSize )
 	else if( nSize <=4 )
 	{
 		nPixelSize = 17;
-		nOffset = 36;
+		nOffset = 39;
 	}
 	else
 	{
 		nPixelSize = 21;
-		nOffset = 84;
+		nOffset = 90;
 	}
 
 	switch( eKind )
@@ -2369,7 +2369,7 @@ BitmapEx SdrCropHdl::GetBitmapForHandle( const BitmapEx& rBitmap, int nSize )
 		default: break;
 	}
 
-	Rectangle aSourceRect( Point( nX * (nPixelSize-1) + nOffset, nY * (nPixelSize-1)), Size(nPixelSize, nPixelSize) );
+	Rectangle aSourceRect( Point( nX * (nPixelSize) + nOffset, nY * (nPixelSize)), Size(nPixelSize, nPixelSize) );
 
 	BitmapEx aRetval(rBitmap);
 	aRetval.Crop(aSourceRect);