diff options
author | olivier <olivier@pcedev.com> | 2022-09-19 22:13:12 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-20 04:44:19 +0000 |
commit | 5fe2c75da0de5ebc21c00f641aafab5bbdae037e (patch) | |
tree | 6106fb884f732023f4cd97cf7af6b17ecd2179ed /modules/shared.py | |
parent | 53651696dc1492f3b7cc009d64a55532bc787aa7 (diff) | |
download | stable-diffusion-webui-gfx803-5fe2c75da0de5ebc21c00f641aafab5bbdae037e.tar.gz stable-diffusion-webui-gfx803-5fe2c75da0de5ebc21c00f641aafab5bbdae037e.tar.bz2 stable-diffusion-webui-gfx803-5fe2c75da0de5ebc21c00f641aafab5bbdae037e.zip |
Support reusing filename stems during batch processing in Extras tab
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 38f54a80..6f513ab7 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -161,6 +161,7 @@ class Options: "sd_model_checkpoint": OptionInfo(None, "Stable Diffusion checkpoint", gr.Radio, lambda: {"choices": [x.title for x in modules.sd_models.checkpoints_list.values()]}),
"js_modal_lightbox": OptionInfo(True, "Enable full page image viewer"),
"js_modal_lightbox_initialy_zoomed": OptionInfo(True, "Show images zoomed in by default in full page image viewer"),
+ "use_original_name_batch": OptionInfo(True, "Use original name for output filename during batch process"),
}
def __init__(self):
|