Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,10 @@ public bool Render(Rect rect, float indentation, bool isSelected, GUIStyle folde

if (IsFolder)
{
var toggleRect = new Rect(nodeRect.x, nodeRect.y, style.border.horizontal, nodeRect.height);

EditorGUI.BeginChangeCheck();
GUI.Toggle(nodeRect, !IsCollapsed, GUIContent.none, GUIStyle.none);
GUI.Toggle(toggleRect, !IsCollapsed, GUIContent.none, GUIStyle.none);
changed = EditorGUI.EndChangeCheck();
}

Expand Down