Fix settings loading

This commit is contained in:
Cohee 2023-10-26 15:01:31 +03:00
parent dd2d292a56
commit 22cebe3176
1 changed files with 4 additions and 0 deletions

View File

@ -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 {