diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-04-29 07:26:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 07:26:47 +0000 |
commit | 1f6aabbd55143101b80d1f0e5545e118d401299b (patch) | |
tree | cb04e15bd34ab4d9486171572e168113152f0786 | |
parent | 86bafb625ae2671722abe1f95a4c0fc5e38381e3 (diff) | |
parent | bbc7a778d8a256e57c310bf27c6104a84beb5c78 (diff) | |
download | stable-diffusion-webui-gfx803-1f6aabbd55143101b80d1f0e5545e118d401299b.tar.gz stable-diffusion-webui-gfx803-1f6aabbd55143101b80d1f0e5545e118d401299b.tar.bz2 stable-diffusion-webui-gfx803-1f6aabbd55143101b80d1f0e5545e118d401299b.zip |
Merge pull request #9839 from dennissheng/master
fix ui img2img scripts
-rw-r--r-- | modules/img2img.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/img2img.py b/modules/img2img.py index 953ac5d2..d22d9a49 100644 --- a/modules/img2img.py +++ b/modules/img2img.py @@ -151,7 +151,7 @@ def img2img(id_task: str, mode: int, prompt: str, negative_prompt: str, prompt_s override_settings=override_settings,
)
- p.scripts = modules.scripts.scripts_txt2img
+ p.scripts = modules.scripts.scripts_img2img
p.script_args = args
if shared.cmd_opts.enable_console_prompts:
|