Removed resize nodes from cursor tool to make moving cursor more easier

This commit is contained in:
Jaex 2017-07-18 15:58:07 +03:00
parent a4dabaea44
commit e3175ba48e

View file

@ -50,6 +50,10 @@ public void SetCursor(CursorData cursorData)
Rectangle = new Rectangle(cursorData.Position, Cursor.Size);
}
public override void ShowNodes()
{
}
public override void OnCreating()
{
Manager.IsMoving = true;
@ -63,7 +67,7 @@ public override void OnDraw(Graphics g)
{
if (Cursor != null)
{
Cursor.DrawStretched(g, Rectangle);
Cursor.Draw(g, Rectangle);
if (!Manager.IsRenderingOutput && Manager.CurrentShapeType == ShapeType.DrawingCursor)
{