diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-10 20:15:48 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-10 20:15:48 +0000 |
commit | f98338faa84ecce503e68d8ba13d5f7bbae52730 (patch) | |
tree | 284200f5b89e29edef918cd830feaf98114c6be7 /modules/shared.py | |
parent | 5da1ba0e91a81804dc911d34c9a2e6956a23199c (diff) | |
download | stable-diffusion-webui-gfx803-f98338faa84ecce503e68d8ba13d5f7bbae52730.tar.gz stable-diffusion-webui-gfx803-f98338faa84ecce503e68d8ba13d5f7bbae52730.tar.bz2 stable-diffusion-webui-gfx803-f98338faa84ecce503e68d8ba13d5f7bbae52730.zip |
add an option to not add watermark to created images
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 da389f9c..ecd15ef5 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -173,6 +173,7 @@ options_templates.update(options_section(('saving-images', "Saving images/grids" "use_original_name_batch": OptionInfo(False, "Use original name for output filename during batch process in 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"),
}))
options_templates.update(options_section(('saving-paths', "Paths for saving"), {
|