Skip to content

Commit

Permalink
Make only visible when filter item is present
Browse files Browse the repository at this point in the history
  • Loading branch information
HyCraftHD committed Jan 14, 2025
1 parent 9815291 commit c1c9772
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected void init() {
public void containerTick() {
super.containerTick();
if (isStrictCheckbox != null) {
isStrictCheckbox.active = menu.hasFilterItem();
isStrictCheckbox.active = isStrictCheckbox.visible = menu.hasFilterItem();
}
}
}

0 comments on commit c1c9772

Please sign in to comment.