aboutsummaryrefslogtreecommitdiff
path: root/modules/txt2img.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-10-03 07:54:57 +0300
committerGitHub <noreply@github.com>2022-10-03 07:54:57 +0300
commit3fac3764b3fadce828ceffdb7dea2be51bbe7da7 (patch)
treeb2307b40ed86dc825d9954f470a2b1663dfed30a /modules/txt2img.py
parent32edf1732f27a1fad5133667c22b948adda1b070 (diff)
parent4c2eccf8e96825333ed400f8a8a2be78141ed8ec (diff)
Merge branch 'master' into #1484_fix_empty_styles_pattern
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: