Update FilterOption.java (#7248)

This commit is contained in:
BlackDeluxeCat
2022-07-28 09:42:52 -04:00
committed by GitHub
parent 311cd86e47
commit df1df66c6c
@@ -145,6 +145,7 @@ public abstract class FilterOption{
public void build(Table table){
table.row();
CheckBox check = table.check("@filter.option." + name, setter).growX().padBottom(5).padTop(5).center().get();
check.setChecked(getter.get());
check.changed(changed);
}
}