diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-16 09:56:30 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-16 09:56:30 +0000 |
commit | 064983c0adb00cd9e88d2f06f66c9a1d5bc116c3 (patch) | |
tree | 81e5a4f6bef945ca0b980dda3771e4c7f66716db /modules/shared.py | |
parent | fcbe0f35fbf1355e986d17410feb5c734d55ed47 (diff) | |
download | stable-diffusion-webui-gfx803-064983c0adb00cd9e88d2f06f66c9a1d5bc116c3.tar.gz stable-diffusion-webui-gfx803-064983c0adb00cd9e88d2f06f66c9a1d5bc116c3.tar.bz2 stable-diffusion-webui-gfx803-064983c0adb00cd9e88d2f06f66c9a1d5bc116c3.zip |
return an option to hide progressbar
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index c5fc250e..483c4c62 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -451,6 +451,7 @@ options_templates.update(options_section(('ui', "User interface"), { }))
options_templates.update(options_section(('ui', "Live previews"), {
+ "show_progressbar": OptionInfo(True, "Show progressbar"),
"live_previews_enable": OptionInfo(True, "Show live previews of the created image"),
"show_progress_grid": OptionInfo(True, "Show previews of all images generated in a batch as a grid"),
"show_progress_every_n_steps": OptionInfo(10, "Show new live preview image every N sampling steps. Set to -1 to show after completion of batch.", gr.Slider, {"minimum": -1, "maximum": 32, "step": 1}),
|