FullInspector.Rotorz.ReorderableList.ReorderableListControl.FixStyles C# (CSharp) Method

FixStyles() private method

Correct if for some reason one or more styles are missing!
private FixStyles ( ) : void
return void
        private void FixStyles()
        {
            containerStyle = containerStyle ?? ReorderableListGUI.defaultContainerStyle;
            addButtonStyle = addButtonStyle ?? ReorderableListGUI.defaultAddButtonStyle;
            removeButtonStyle = removeButtonStyle ?? ReorderableListGUI.defaultRemoveButtonStyle;

            if (s_RightAlignedLabelStyle == null) {
                s_RightAlignedLabelStyle = new GUIStyle(GUI.skin.label);
                s_RightAlignedLabelStyle.alignment = TextAnchor.MiddleRight;
                s_RightAlignedLabelStyle.padding.right = 4;
            }
        }