fix refiner reload/unload

This commit is contained in:
Vladimir Mandic
2023-08-26 13:35:59 +00:00
parent d48a13a118
commit c4263da0e6
7 changed files with 84 additions and 88 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
function onCalcResolutionHires(enable_hr, width, height, hr_scale, hr_resize_x, hr_resize_y) {
function onCalcResolutionHires(enable_hr, width, height, hr_scale, hr_resize_x, hr_resize_y, hr_upscaler) {
const setInactive = (elem, inactive) => elem.classList.toggle('inactive', !!inactive);
const hrUpscaleBy = gradioApp().getElementById('txt2img_hr_scale');
const hrResizeX = gradioApp().getElementById('txt2img_hr_resize_x');
@@ -7,5 +7,5 @@ function onCalcResolutionHires(enable_hr, width, height, hr_scale, hr_resize_x,
setInactive(hrUpscaleBy, opts.use_old_hires_fix_width_height || hr_resize_x > 0 || hr_resize_y > 0);
setInactive(hrResizeX, opts.use_old_hires_fix_width_height || hr_resize_x === 0);
setInactive(hrResizeY, opts.use_old_hires_fix_width_height || hr_resize_y === 0);
return [enable_hr, width, height, hr_scale, hr_resize_x, hr_resize_y];
return [enable_hr, width, height, hr_scale, hr_resize_x, hr_resize_y, hr_upscaler];
}