diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-29 06:57:22 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-29 06:57:22 +0000 |
commit | beb6fc29798d82f1b08a34cf5dd79e4ab29d4cd0 (patch) | |
tree | 19b8be296f0aa0bf163419b9de9f96a4a5dacf9f /modules/shared.py | |
parent | 9553a7e071351455074bac255c529e1184c5ee24 (diff) | |
download | stable-diffusion-webui-gfx803-beb6fc29798d82f1b08a34cf5dd79e4ab29d4cd0.tar.gz stable-diffusion-webui-gfx803-beb6fc29798d82f1b08a34cf5dd79e4ab29d4cd0.tar.bz2 stable-diffusion-webui-gfx803-beb6fc29798d82f1b08a34cf5dd79e4ab29d4cd0.zip |
move send seed option to UI section and make it false 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 5d1ceb85..fb84afd8 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -280,7 +280,6 @@ options_templates.update(options_section(('sd', "Stable Diffusion"), { "filter_nsfw": OptionInfo(False, "Filter NSFW content"),
'CLIP_stop_at_last_layers': OptionInfo(1, "Stop At last layers of CLIP model", gr.Slider, {"minimum": 1, "maximum": 12, "step": 1}),
"random_artist_categories": OptionInfo([], "Allowed categories for random artists selection when using the Roll button", gr.CheckboxGroup, {"choices": artist_db.categories()}),
- "send_seed": OptionInfo(False, "Send seed when sending prompt or image to other interface"),
}))
options_templates.update(options_section(('interrogate', "Interrogate Options"), {
@@ -306,6 +305,7 @@ options_templates.update(options_section(('ui', "User interface"), { "add_model_hash_to_info": OptionInfo(True, "Add model hash to generation information"),
"add_model_name_to_info": OptionInfo(False, "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."),
+ "send_seed": OptionInfo(True, "Send seed when sending prompt or image to other interface"),
"font": OptionInfo("", "Font for image grids that have text"),
"js_modal_lightbox": OptionInfo(True, "Enable full page image viewer"),
"js_modal_lightbox_initially_zoomed": OptionInfo(True, "Show images zoomed in by default in full page image viewer"),
|