Hide postprocessing settings if is not enabled

pull/380/head
Halali 5 years ago
parent 1bb981b289
commit b616ec76e0

@ -2217,6 +2217,21 @@
}
});
if ($('#settings_use_postprocessing').data("postprocessing") === "True") {
$('.postprocessing').show();
} else {
$('.postprocessing').hide();
}
$('#settings_use_postprocessing').checkbox({
onChecked: function() {
$('.postprocessing').show();
},
onUnchecked: function() {
$('.postprocessing').hide();
}
});
if ($('#settings_upgrade_subs').data("upgrade") === "True") {
$('.upgrade_subs').show();
} else {

Loading…
Cancel
Save