diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2024-01-12 17:20:06 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2024-01-14 08:56:34 +0000 |
commit | 92501d4f8006866cec3438c038e1588315d835bc (patch) | |
tree | d1a9d131b4e98cfddd960c29a3ceef0a9283ac25 | |
parent | cb5b335acddd126d4f6c990982816c06beb0d6ae (diff) | |
download | stable-diffusion-webui-gfx803-92501d4f8006866cec3438c038e1588315d835bc.tar.gz stable-diffusion-webui-gfx803-92501d4f8006866cec3438c038e1588315d835bc.tar.bz2 stable-diffusion-webui-gfx803-92501d4f8006866cec3438c038e1588315d835bc.zip |
disable saving images before highres fix
-rw-r--r-- | modules/txt2img.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/txt2img.py b/modules/txt2img.py index d22a1f31..11558785 100644 --- a/modules/txt2img.py +++ b/modules/txt2img.py @@ -77,7 +77,7 @@ def txt2img_upscale(id_task: str, request: gr.Request, gallery, gallery_index, g subseed = all_subseeds[-gallery_index_from_end if gallery_index_from_end < len(all_seeds) + 1 else 0]
p.seed = seed
p.subseed = subseed
-
+ p.override_settings['save_images_before_highres_fix'] = False
with closing(p):
processed = modules.scripts.scripts_txt2img.run(p, *p.script_args)
|