diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-22 17:48:13 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-22 17:48:13 +0000 |
commit | d213d6ca6f90094cb45c11e2f3cb37d25a8d1f94 (patch) | |
tree | f2300e2c0f00e8c04072187479f0e13ee94b0b8f /modules/shared.py | |
parent | 4fdb53c1e9962507fc8336dad9a0fabfe6c418c0 (diff) | |
download | stable-diffusion-webui-gfx803-d213d6ca6f90094cb45c11e2f3cb37d25a8d1f94.tar.gz stable-diffusion-webui-gfx803-d213d6ca6f90094cb45c11e2f3cb37d25a8d1f94.tar.bz2 stable-diffusion-webui-gfx803-d213d6ca6f90094cb45c11e2f3cb37d25a8d1f94.zip |
removed the option to use 2x more memory when generating previews
added an option to always only show one image in previews
removed duplicate code
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py index 95d6e225..25bfc895 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -294,7 +294,7 @@ options_templates.update(options_section(('interrogate', "Interrogate Options"), options_templates.update(options_section(('ui', "User interface"), {
"show_progressbar": OptionInfo(True, "Show progressbar"),
"show_progress_every_n_steps": OptionInfo(0, "Show image creation progress every N sampling steps. Set 0 to disable.", gr.Slider, {"minimum": 0, "maximum": 32, "step": 1}),
- "progress_decode_combined": OptionInfo(False, "Decode all progress images at once. (Slighty speeds up progress generation but consumes significantly more VRAM with large batches.)"),
+ "show_progress_grid": OptionInfo(True, "Show previews of all images generated in a batch as a grid"),
"return_grid": OptionInfo(True, "Show grid in results for web"),
"do_not_show_images": OptionInfo(False, "Do not show any images in results for web"),
"add_model_hash_to_info": OptionInfo(True, "Add model hash to generation information"),
|