On freehand region & step drawing resize call move method so arrow keys can move without require holding ctrl key

This commit is contained in:
Jaex 2016-08-08 11:46:45 +03:00
parent e07351fc6c
commit 4eee080b59
2 changed files with 2 additions and 0 deletions

View file

@ -120,6 +120,7 @@ public override void OnShapePathRequested(GraphicsPath gp, Rectangle rect)
public override void Resize(int x, int y, bool fromBottomRight)
{
Move(x, y);
}
}
}

View file

@ -122,6 +122,7 @@ public override void Move(int x, int y)
public override void Resize(int x, int y, bool fromBottomRight)
{
Move(x, y);
}
public override void OnNodeVisible()