diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-02 17:23:40 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-02 17:23:40 +0000 |
commit | 3ff0de2c594b786ef948a89efb1814c59bb42117 (patch) | |
tree | bf0841965fdc5293ec5f437bda7cc85bc0fcb330 /modules/txt2img.py | |
parent | 4ec4af6e0b7addeee5221a03f32d117ccdc875d9 (diff) | |
download | stable-diffusion-webui-gfx803-3ff0de2c594b786ef948a89efb1814c59bb42117.tar.gz stable-diffusion-webui-gfx803-3ff0de2c594b786ef948a89efb1814c59bb42117.tar.bz2 stable-diffusion-webui-gfx803-3ff0de2c594b786ef948a89efb1814c59bb42117.zip |
added --disable-console-progressbars to disable progressbars in console
disabled printing prompts to console by default, enabled by --enable-console-prompts
Diffstat (limited to 'modules/txt2img.py')
-rw-r--r-- | modules/txt2img.py | 4 |
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:
|