aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Sanchez <joseph@codecreations.net>2023-01-30 21:46:13 -0500
committerJoey Sanchez <joseph@codecreations.net>2023-01-30 21:46:52 -0500
commit0426b3478937e54446337cf435ed3f548688b120 (patch)
treedf975f650dc925118626dccab5a96033af19c53a
parent2c1bb46c7ad5b4536f6587d327a03f0ff7811c5d (diff)
Adding default true to use_original_name_batch as images should by default hold the same name to help keep sequenced images in their correct order
-rw-r--r--modules/shared.py2
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"),