diff --git a/ShareX.ScreenCaptureLib/Shapes/Drawing/LineDrawingShape.cs b/ShareX.ScreenCaptureLib/Shapes/Drawing/LineDrawingShape.cs index 544403d1c..1e77d490b 100644 --- a/ShareX.ScreenCaptureLib/Shapes/Drawing/LineDrawingShape.cs +++ b/ShareX.ScreenCaptureLib/Shapes/Drawing/LineDrawingShape.cs @@ -71,11 +71,11 @@ public override void Resize(int x, int y, bool fromBottomRight) { if (fromBottomRight) { - StartPosition = StartPosition.Add(x, y); + EndPosition = EndPosition.Add(x, y); } else { - EndPosition = EndPosition.Add(x, y); + StartPosition = StartPosition.Add(x, y); } }