From ff54e84adf70603accb03073e1c29d6e6d451b5b Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Thu, 25 May 2023 08:04:56 -0400 Subject: [PATCH] bring back old hires fix denoising --- javascript/hires_fix.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/hires_fix.js b/javascript/hires_fix.js index d4ae4586e..6e48699df 100644 --- a/javascript/hires_fix.js +++ b/javascript/hires_fix.js @@ -6,7 +6,7 @@ function onCalcResolutionHires(enable_hr, width, height, hr_scale, hr_resize_x, const hrUpscaleBy = gradioApp().getElementById('txt2img_hr_scale'); const hrResizeX = gradioApp().getElementById('txt2img_hr_resize_x'); const hrResizeY = gradioApp().getElementById('txt2img_hr_resize_y'); - gradioApp().getElementById('txt2img_hires_fix_row2').style.display = opts.use_old_hires_fix_width_height ? 'none' : ''; + gradioApp().getElementById('txt2img_hires_fix_row3').style.display = opts.use_old_hires_fix_width_height ? 'none' : ''; 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);