Remove the extra whitespace changes

This commit is contained in:
Nathan Brown 2025-05-28 23:17:03 -07:00
commit 56092c75e7

View file

@ -1771,14 +1771,14 @@ namespace Greenshot.Editor.Drawing
{
targetClipRectangle = targetClipRectangle
.ChangeX(targetClipRectangle.X - horizontalCorrection)
.ChangeWidth(targetClipRectangle.Width + horizontalCorrection);
.ChangeWidth(targetClipRectangle.X + horizontalCorrection);
}
if (verticalCorrection != 0)
{
targetClipRectangle = targetClipRectangle
.ChangeY(targetClipRectangle.Y - verticalCorrection)
.ChangeHeight(targetClipRectangle.Height + verticalCorrection);
.ChangeHeight(targetClipRectangle.Y + verticalCorrection);
}
}