Update FilterOption.java (#7248)

This commit is contained in:
BlackDeluxeCat 2022-07-28 21:42:52 +08:00 committed by GitHub
parent 311cd86e47
commit df1df66c6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}
}