diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-10 08:37:06 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-10 08:37:06 +0000 |
commit | ef0cdb8a423a000cc9fd8726c51d25b484fc905f (patch) | |
tree | 4197bbade6faff4d198584e708d5269828c626aa /modules/ui.py | |
parent | 955f644ce14f98ed7dd3bd331e57070112ff68ff (diff) | |
download | stable-diffusion-webui-gfx803-ef0cdb8a423a000cc9fd8726c51d25b484fc905f.tar.gz stable-diffusion-webui-gfx803-ef0cdb8a423a000cc9fd8726c51d25b484fc905f.tar.bz2 stable-diffusion-webui-gfx803-ef0cdb8a423a000cc9fd8726c51d25b484fc905f.zip |
add batch count to sd upscale #169
fix writing empty prompt pictures to rroot directory instead of 'empty'
suppress 'Denoising strength change factor' text inimage info unless using loopback mode
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/ui.py b/modules/ui.py index d6a338a7..149c5115 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -455,7 +455,6 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo): mask_mode: gr_show(is_inpaint),
mask_blur: gr_show(is_inpaint),
inpainting_fill: gr_show(is_inpaint),
- batch_count: gr_show(not is_upscale),
batch_size: gr_show(not is_loopback),
sd_upscale_upscaler_name: gr_show(is_upscale),
sd_upscale_overlap: gr_show(is_upscale),
@@ -475,7 +474,6 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo): mask_mode,
mask_blur,
inpainting_fill,
- batch_count,
batch_size,
sd_upscale_upscaler_name,
sd_upscale_overlap,
|