accordions everywhere

This commit is contained in:
Vladimir Mandic
2023-09-22 20:34:25 -04:00
parent 4e7ad0e15a
commit 9b4c4e5b49
13 changed files with 260 additions and 191 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
function onCalcResolutionHires(enable_hr, width, height, hr_scale, hr_resize_x, hr_resize_y, hr_upscaler) {
function onCalcResolutionHires(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');
@@ -6,5 +6,5 @@ function onCalcResolutionHires(enable_hr, width, height, hr_scale, hr_resize_x,
setInactive(hrUpscaleBy, hr_resize_x > 0 || hr_resize_y > 0);
setInactive(hrResizeX, hr_resize_x === 0);
setInactive(hrResizeY, hr_resize_y === 0);
return [enable_hr, width, height, hr_scale, hr_resize_x, hr_resize_y, hr_upscaler];
return [width, height, hr_scale, hr_resize_x, hr_resize_y, hr_upscaler];
}