diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2024-01-01 13:50:59 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2024-01-01 13:50:59 +0000 |
commit | 0aa7c53c0b9469849377aff83f43c9f75c19b3fa (patch) | |
tree | 8fddf13dd7d98d1ae8615e7c216558170203876b /modules/shared_options.py | |
parent | 2a7ad70db5447dd1d5915b2b59715ee74f670119 (diff) | |
download | stable-diffusion-webui-gfx803-0aa7c53c0b9469849377aff83f43c9f75c19b3fa.tar.gz stable-diffusion-webui-gfx803-0aa7c53c0b9469849377aff83f43c9f75c19b3fa.tar.bz2 stable-diffusion-webui-gfx803-0aa7c53c0b9469849377aff83f43c9f75c19b3fa.zip |
fix borked merge, rename fields to better match what they do, change setting default to true for #13653
Diffstat (limited to 'modules/shared_options.py')
-rw-r--r-- | modules/shared_options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared_options.py b/modules/shared_options.py index 7852e0ea..7581e276 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -120,7 +120,6 @@ options_templates.update(options_section(('system', "System", "system"), { "disable_mmap_load_safetensors": OptionInfo(False, "Disable memmapping for loading .safetensors files.").info("fixes very slow loading speed in some cases"),
"hide_ldm_prints": OptionInfo(True, "Prevent Stability-AI's ldm/sgm modules from printing noise to console."),
"dump_stacks_on_signal": OptionInfo(False, "Print stack traces before exiting the program with ctrl+c."),
- "interrupt_after_current": OptionInfo(False, "Interrupt generation after current image is finished on batch processing"),
}))
options_templates.update(options_section(('API', "API", "system"), {
@@ -286,6 +285,7 @@ options_templates.update(options_section(('ui_alternatives', "UI alternatives", "hires_fix_show_prompts": OptionInfo(False, "Hires fix: show hires prompt and negative prompt").needs_reload_ui(),
"txt2img_settings_accordion": OptionInfo(False, "Settings in txt2img hidden under Accordion").needs_reload_ui(),
"img2img_settings_accordion": OptionInfo(False, "Settings in img2img hidden under Accordion").needs_reload_ui(),
+ "interrupt_after_current": OptionInfo(True, "Don't Interrupt in the middle").info("when using Interrupt button, if generating more than one image, stop after the generation of an image has finished, instead of immediately"),
}))
options_templates.update(options_section(('ui', "User interface", "ui"), {
|