public static bool SmallFoldoutBold(string header, bool display)
        {
            float           lw        = EditorGUIUtility.labelWidth - 13;
            GUILayoutOption clickArea = GUILayout.MaxWidth(lw);
            Rect            rect      = GUILayoutUtility.GetRect(0, 18f, clickArea);

            MGUI.SpaceN24();
            header = "    " + header;
            EditorGUILayout.LabelField(header, EditorStyles.boldLabel);
            MGUI.Space22();
            return(DoSmallToggle(display, rect));
        }