diff options
author | timntorres <timothynarcisotorres@gmail.com> | 2022-12-17 16:59:02 +0000 |
---|---|---|
committer | timntorres <timothynarcisotorres@gmail.com> | 2022-12-17 16:59:02 +0000 |
commit | 6fd91c9179f51dd2f73f03eeabd12bfd081941c5 (patch) | |
tree | ee90d75227e36acb1e59e53f973378d7d32dd56b | |
parent | a7a039d53a69f8c32cb889fe322e769b238fec27 (diff) | |
download | stable-diffusion-webui-gfx803-6fd91c9179f51dd2f73f03eeabd12bfd081941c5.tar.gz stable-diffusion-webui-gfx803-6fd91c9179f51dd2f73f03eeabd12bfd081941c5.tar.bz2 stable-diffusion-webui-gfx803-6fd91c9179f51dd2f73f03eeabd12bfd081941c5.zip |
Update OptionInfo to match preexisting option.
-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 218894e8..230c377e 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -293,7 +293,7 @@ options_templates.update(options_section(('saving-images', "Saving images/grids" "export_for_4chan": OptionInfo(True, "If PNG image is larger than 4MB or any dimension is larger than 4000, downscale and save copy as JPG"),
"use_original_name_batch": OptionInfo(False, "Use original name for output filename during batch process in extras tab"),
- "use_upscaler_name_as_suffix": OptionInfo(False, "Add upscaler name to the end of filename in the extras tab"),
+ "use_upscaler_name_as_suffix": OptionInfo(False, "Use upscaler name as filename suffix in the extras tab"),
"save_selected_only": OptionInfo(True, "When using 'Save' button, only save a single selected image"),
"do_not_add_watermark": OptionInfo(False, "Do not add watermark to images"),
|