LongoMatch.Drawing.Widgets.Blackboard.StopMove C# (CSharp) Méthode

StopMove() protected méthode

protected StopMove ( bool moved ) : void
moved bool
Résultat void
        protected override void StopMove(bool moved)
        {
            Selection sel = Selections.FirstOrDefault ();

            if (inZooming) {
                widget.SetCursorForTool (DrawTool.CanMove);
            }

            if (sel != null) {
                (sel.Drawable as ICanvasDrawableObject).IDrawableObject.Reorder ();
            }
            if (inObjectCreation) {
                UpdateSelection (null);
                inObjectCreation = false;
            }
            handdrawing = false;
            inZooming = false;
        }