fix stickiness for settings checkboxes close #39

This commit is contained in:
Matt Walsh
2024-04-19 21:10:43 -05:00
parent 535b1072d8
commit f4f3720793

View File

@@ -10,6 +10,7 @@ class Setting {
this.defaultValue = defaultValue;
this.myValue = defaultValue;
this.type = type;
this.sticky = sticky;
// a default blank change function is provided
this.changeAction = changeAction ?? (() => { });