diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-02-01 13:22:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-01 13:22:16 +0000 |
commit | 30a64504b1bcd8af8ed99e63ea04be7a929c8abf (patch) | |
tree | 5be4920973363120b3848c8ee31f736006eeb51a /modules/shared.py | |
parent | b1873dbb77c954de44be9c7a4364cd5e406db206 (diff) | |
parent | 0426b3478937e54446337cf435ed3f548688b120 (diff) | |
download | stable-diffusion-webui-gfx803-30a64504b1bcd8af8ed99e63ea04be7a929c8abf.tar.gz stable-diffusion-webui-gfx803-30a64504b1bcd8af8ed99e63ea04be7a929c8abf.tar.bz2 stable-diffusion-webui-gfx803-30a64504b1bcd8af8ed99e63ea04be7a929c8abf.zip |
Merge pull request #7414 from joecodecreations/master
Changes use_original_name_batch to default to True
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 69634fd8..5600d480 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -327,7 +327,7 @@ options_templates.update(options_section(('saving-images', "Saving images/grids" "jpeg_quality": OptionInfo(80, "Quality for saved jpeg images", gr.Slider, {"minimum": 1, "maximum": 100, "step": 1}),
"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_original_name_batch": OptionInfo(True, "Use original name for output filename during batch process in 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"),
|