Fix settings loading
This commit is contained in:
parent
dd2d292a56
commit
22cebe3176
|
@ -1126,6 +1126,10 @@ function loadContextSettings() {
|
|||
contextControls.forEach(control => {
|
||||
const $element = $(`#${control.id}`);
|
||||
|
||||
if (control.isGlobalSetting) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (control.isCheckbox) {
|
||||
$element.prop('checked', power_user.context[control.property]);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue