aboutsummaryrefslogtreecommitdiffstats
path: root/modules/txt2img.py
diff options
context:
space:
mode:
authorJairo Correa <jn.j41r0@gmail.com>2022-10-02 21:31:19 +0000
committerJairo Correa <jn.j41r0@gmail.com>2022-10-02 21:31:19 +0000
commitad0cc85d1f0bd52877963f296eb1257a0c2b012b (patch)
treec7703e74e1964800bc1dbf11654c055f0dc21f8a /modules/txt2img.py
parentad1fbbae93fa17f797a76bc59220d074990b85b4 (diff)
parent4c2eccf8e96825333ed400f8a8a2be78141ed8ec (diff)
downloadstable-diffusion-webui-gfx803-ad0cc85d1f0bd52877963f296eb1257a0c2b012b.tar.gz
stable-diffusion-webui-gfx803-ad0cc85d1f0bd52877963f296eb1257a0c2b012b.tar.bz2
stable-diffusion-webui-gfx803-ad0cc85d1f0bd52877963f296eb1257a0c2b012b.zip
Merge branch 'master' into stable
Diffstat (limited to 'modules/txt2img.py')
-rw-r--r--modules/txt2img.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/txt2img.py b/modules/txt2img.py
index 5368e4d0..d4406c3c 100644
--- a/modules/txt2img.py
+++ b/modules/txt2img.py
@@ -34,7 +34,9 @@ def txt2img(prompt: str, negative_prompt: str, prompt_style: str, prompt_style2:
denoising_strength=denoising_strength if enable_hr else None,
)
- print(f"\ntxt2img: {prompt}", file=shared.progress_print_out)
+ if cmd_opts.enable_console_prompts:
+ print(f"\ntxt2img: {prompt}", file=shared.progress_print_out)
+
processed = modules.scripts.scripts_txt2img.run(p, *args)
if processed is None: