Resize line from end position by default

This commit is contained in:
Jaex 2016-08-08 11:44:03 +03:00
parent fac18cb04e
commit e07351fc6c

View file

@ -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);
}
}