aboutsummaryrefslogtreecommitdiffstats
path: root/javascript
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2023-01-09 11:57:47 +0000
committerAUTOMATIC <16777216c@gmail.com>2023-01-09 11:57:47 +0000
commitd4fd2418efb0986a8226add0b800fb5c73ffb58c (patch)
treefb9e9f66ce779f87e0d783e8e00a7f1fbbdc60e1 /javascript
parent8850fc23b6e8a8e210bdfe4aade81516fb5770f3 (diff)
downloadstable-diffusion-webui-gfx803-d4fd2418efb0986a8226add0b800fb5c73ffb58c.tar.gz
stable-diffusion-webui-gfx803-d4fd2418efb0986a8226add0b800fb5c73ffb58c.tar.bz2
stable-diffusion-webui-gfx803-d4fd2418efb0986a8226add0b800fb5c73ffb58c.zip
add an option to use old hiresfix width/height behavior
add a visual effect to inactive hires fix elements
Diffstat (limited to 'javascript')
-rw-r--r--javascript/hires_fix.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/javascript/hires_fix.js b/javascript/hires_fix.js
new file mode 100644
index 00000000..07fba549
--- /dev/null
+++ b/javascript/hires_fix.js
@@ -0,0 +1,25 @@
+
+function setInactive(elem, inactive){
+ console.log(elem)
+ if(inactive){
+ elem.classList.add('inactive')
+ } else{
+ elem.classList.remove('inactive')
+ }
+}
+
+function onCalcResolutionHires(enable, width, height, hr_scale, hr_resize_x, hr_resize_y){
+ console.log(enable, width, height, hr_scale, hr_resize_x, hr_resize_y)
+
+ hrUpscaleBy = gradioApp().getElementById('txt2img_hr_scale')
+ hrResizeX = gradioApp().getElementById('txt2img_hr_resize_x')
+ hrResizeY = gradioApp().getElementById('txt2img_hr_resize_y')
+
+ gradioApp().getElementById('txt2img_hires_fix_row2').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)
+
+ return [enable, width, height, hr_scale, hr_resize_x, hr_resize_y]
+}