Path: blob/master/javascript/hires_fix.js
3055 views
1function onCalcResolutionHires(enable, width, height, hr_scale, hr_resize_x, hr_resize_y) {2function setInactive(elem, inactive) {3elem.classList.toggle('inactive', !!inactive);4}56var hrUpscaleBy = gradioApp().getElementById('txt2img_hr_scale');7var hrResizeX = gradioApp().getElementById('txt2img_hr_resize_x');8var hrResizeY = gradioApp().getElementById('txt2img_hr_resize_y');910gradioApp().getElementById('txt2img_hires_fix_row2').style.display = opts.use_old_hires_fix_width_height ? "none" : "";1112setInactive(hrUpscaleBy, opts.use_old_hires_fix_width_height || hr_resize_x > 0 || hr_resize_y > 0);13setInactive(hrResizeX, opts.use_old_hires_fix_width_height || hr_resize_x == 0);14setInactive(hrResizeY, opts.use_old_hires_fix_width_height || hr_resize_y == 0);1516return [enable, width, height, hr_scale, hr_resize_x, hr_resize_y];17}181920