UnityEditor.UnifiedInspectView.DoDrawInstruction C# (CSharp) Method

DoDrawInstruction() protected method

protected DoDrawInstruction ( ListViewElement el, int controlId ) : void
el ListViewElement
controlId int
return void
        protected override void DoDrawInstruction(ListViewElement el, int controlId)
        {
            IMGUIInstruction instruction = this.m_Instructions[el.row];
            GUIContent content = GUIContent.Temp(this.GetInstructionListName(el.row));
            Rect position = el.position;
            position.xMin += instruction.level * 10;
            GUIViewDebuggerWindow.s_Styles.listItemBackground.Draw(position, false, false, base.m_ListViewState.row == el.row, false);
            GUIViewDebuggerWindow.s_Styles.listItem.Draw(position, content, controlId, base.m_ListViewState.row == el.row);
        }