diff options
author | forsurefr <67145502+forsurefr@users.noreply.github.com> | 2023-04-07 09:13:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-07 09:13:51 +0000 |
commit | 63a6f9b4d98a192bb359910cb284cf00582baabf (patch) | |
tree | 9c51013ae7299494e4e4121d850c4e6a5debee71 /modules/shared.py | |
parent | b3593d0997bfdcca7f8aa01663e81720db50e494 (diff) | |
download | stable-diffusion-webui-gfx803-63a6f9b4d98a192bb359910cb284cf00582baabf.tar.gz stable-diffusion-webui-gfx803-63a6f9b4d98a192bb359910cb284cf00582baabf.tar.bz2 stable-diffusion-webui-gfx803-63a6f9b4d98a192bb359910cb284cf00582baabf.zip |
Do not save init image by default
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 69c2b21e..c5a1b5ad 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -254,7 +254,7 @@ options_templates.update(options_section(('saving-images', "Saving images/grids" "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"),
- "save_init_img": OptionInfo(True, "Save init images when using img2img"),
+ "save_init_img": OptionInfo(False, "Save init images when using img2img"),
"temp_dir": OptionInfo("", "Directory for temporary images; leave empty for default"),
"clean_temp_dir_at_start": OptionInfo(False, "Cleanup non-default temporary directory when starting webui"),
|