UnityEditor.Graphs.ParameterControllerView.OnMouseUpParameter C# (CSharp) Method

OnMouseUpParameter() private method

private OnMouseUpParameter ( ReorderableList list ) : void
list UnityEditorInternal.ReorderableList
return void
        private void OnMouseUpParameter(ReorderableList list)
        {
            if ((!this.m_Host.liveLink && this.m_HadKeyFocusAtMouseDown) && ((list.index == this.m_LastSelectedIndex) && (Event.current.button == 0)))
            {
                Element element = list.list[list.index] as Element;
                this.renameOverlay.BeginRename(element.name, list.index, 0.1f);
            }
            this.m_LastSelectedIndex = list.index;
        }