Skip to content
This repository was archived by the owner on Jan 24, 2023. It is now read-only.

Commit 13a2e76

Browse files
committed
Added Active field to ReSliderCategory.cs
1 parent 9e9dcbe commit 13a2e76

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

UI/QuickMenu/ReSliderCategory.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,16 @@ public string Title
5858
set => Header.Title = value;
5959
}
6060

61+
public bool Active
62+
{
63+
get => _sliderContainer.Active;
64+
set
65+
{
66+
Header.Active = value;
67+
_sliderContainer.Active = value;
68+
}
69+
}
70+
6171
public ReMenuSliderCategory(string title, Transform parent = null, bool collapsible = true)
6272
{
6373
if (collapsible)

0 commit comments

Comments
 (0)