diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-29 21:37:26 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-29 21:37:26 +0000 |
commit | f91068f426a359942d13bf7ec15b56562141b8d7 (patch) | |
tree | 4c6346c8394f48e75104bc30c18511e3bc3ae43e /modules/shared.py | |
parent | 938578e8a94883aa3c0075cf47eea64f66119541 (diff) | |
download | stable-diffusion-webui-gfx803-f91068f426a359942d13bf7ec15b56562141b8d7.tar.gz stable-diffusion-webui-gfx803-f91068f426a359942d13bf7ec15b56562141b8d7.tar.bz2 stable-diffusion-webui-gfx803-f91068f426a359942d13bf7ec15b56562141b8d7.zip |
change disable_weights_auto_swap to true 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 b5370265..96a2572f 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -441,7 +441,7 @@ options_templates.update(options_section(('ui', "User interface"), { "do_not_show_images": OptionInfo(False, "Do not show any images in results for web"),
"add_model_hash_to_info": OptionInfo(True, "Add model hash to generation information"),
"add_model_name_to_info": OptionInfo(True, "Add model name to generation information"),
- "disable_weights_auto_swap": OptionInfo(False, "When reading generation parameters from text into UI (from PNG info or pasted text), do not change the selected model/checkpoint."),
+ "disable_weights_auto_swap": OptionInfo(True, "When reading generation parameters from text into UI (from PNG info or pasted text), do not change the selected model/checkpoint."),
"send_seed": OptionInfo(True, "Send seed when sending prompt or image to other interface"),
"send_size": OptionInfo(True, "Send size when sending prompt or image to another interface"),
"font": OptionInfo("", "Font for image grids that have text"),
|