Changed: Undo/Redo menu items show their next function, Panels in form are now docked, Positions of controls in form cleaned up a bit,

This commit is contained in:
quinnvoker
2019-01-01 10:45:48 -08:00
parent 296e261135
commit 4b3f6a7d53
5 changed files with 139 additions and 77 deletions
+4 -1
View File
@@ -151,6 +151,10 @@ namespace AnimationEditor
if (hovering)
Cursor = System.Windows.Forms.Cursors.Default;
hovering = false;
if (dragging && totalDragDist != Vector2.Zero)
{
OnSpriteDragCompleted(new Modifications.SpriteDragArgs(totalDragDist));
}
dragging = false;
}
@@ -210,7 +214,6 @@ namespace AnimationEditor
if(dragging && totalDragDist != Vector2.Zero)
{
OnSpriteDragCompleted(new Modifications.SpriteDragArgs(totalDragDist));
}
dragging = false;
}