Skip to content

Commit 82a5f6f

Browse files
committed
Made the foldout label clickable in the folder inspector
Fix of a small annoying detail
1 parent 0f7bd6e commit 82a5f6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Editor/FolderEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class FolderEditor : UnityEditor.Editor
1313
public override bool RequiresConstantRepaint() => true;
1414
public override void OnInspectorGUI()
1515
{
16-
this._expanded = EditorGUILayout.Foldout(this._expanded, "Icon Color");
16+
this._expanded = EditorGUILayout.Foldout(this._expanded, "Icon Color", true);
1717
if (this._expanded) { this.RenderColorPicker(); }
1818
}
1919

0 commit comments

Comments
 (0)