aboutsummaryrefslogtreecommitdiff
path: root/modules/txt2img.py
diff options
context:
space:
mode:
authorbrkirch <brkirch@users.noreply.github.com>2022-10-04 01:04:19 -0400
committerGitHub <noreply@github.com>2022-10-04 01:04:19 -0400
commitb88e4ea7d6536ddc814a9101a258f87b06230019 (patch)
tree913bdda300b7082aa61429689d0a730cecda1525 /modules/txt2img.py
parentbdaa36c84470adbdce3e98c01a69af5e95adfb02 (diff)
parent2865ef4b9ab16d56326cc805541bebcf01d099bc (diff)
Merge branch 'master' into master
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: