diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-12-24 19:41:35 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-12-24 19:41:35 +0000 |
commit | c5bdba2089dc7060be2631bcbc83313b6358cbf2 (patch) | |
tree | 24cfdae4cbbceab5a464c73ec6cd3aa32d741a14 /modules/shared.py | |
parent | 56e557c6ff8a6480887c9c585bf908045ee8e791 (diff) | |
download | stable-diffusion-webui-gfx803-c5bdba2089dc7060be2631bcbc83313b6358cbf2.tar.gz stable-diffusion-webui-gfx803-c5bdba2089dc7060be2631bcbc83313b6358cbf2.tar.bz2 stable-diffusion-webui-gfx803-c5bdba2089dc7060be2631bcbc83313b6358cbf2.zip |
change wording a bit
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 3cc3c724..d4ddeea0 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -392,7 +392,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 to 0 to disable. Set to -1 to show after completion of batch.", gr.Slider, {"minimum": -1, "maximum": 32, "step": 1}),
- "show_progress_type": OptionInfo("Full", "Image creation progress mode", gr.Radio, {"choices": ["Full", "Approx NN", "Approx cheap"]}),
+ "show_progress_type": OptionInfo("Full", "Image creation progress preview mode", gr.Radio, {"choices": ["Full", "Approx NN", "Approx cheap"]}),
"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"),
|