FairyGUI.InputTextField.__touchEnd C# (CSharp) Method

__touchEnd() private method

private __touchEnd ( EventContext context ) : void
context EventContext
return void
        void __touchEnd(EventContext context)
        {
            Stage.inst.onTouchMove.RemoveCapture(_touchMoveDelegate);

            if (isDisposed)
                return;

            if (_selectionStart != null && ((TextField.CharPosition)_selectionStart).caretIndex == _caretPosition)
                _selectionStart = null;
        }