diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-30 11:04:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-30 11:04:17 +0000 |
commit | 32862e437952232c5d471c41ed7d80a2e685ddc7 (patch) | |
tree | c55a10af0a3dfcb973a7d619720cc569d8e09beb /extensions-builtin/Lora/scripts/lora_script.py | |
parent | 8f1826375943718463cec3af97a37886249bdb44 (diff) | |
parent | 59d060fd5ea93fcc3fdbfbd13b6e20fda06ecf94 (diff) | |
download | stable-diffusion-webui-gfx803-32862e437952232c5d471c41ed7d80a2e685ddc7.tar.gz stable-diffusion-webui-gfx803-32862e437952232c5d471c41ed7d80a2e685ddc7.tar.bz2 stable-diffusion-webui-gfx803-32862e437952232c5d471c41ed7d80a2e685ddc7.zip |
Merge pull request #14464 from AUTOMATIC1111/more-lora-not-found-warning
More lora not found warning
Diffstat (limited to 'extensions-builtin/Lora/scripts/lora_script.py')
-rw-r--r-- | extensions-builtin/Lora/scripts/lora_script.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extensions-builtin/Lora/scripts/lora_script.py b/extensions-builtin/Lora/scripts/lora_script.py index ef23968c..1518f7e5 100644 --- a/extensions-builtin/Lora/scripts/lora_script.py +++ b/extensions-builtin/Lora/scripts/lora_script.py @@ -39,6 +39,8 @@ shared.options_templates.update(shared.options_section(('extra_networks', "Extra "lora_show_all": shared.OptionInfo(False, "Always show all networks on the Lora page").info("otherwise, those detected as for incompatible version of Stable Diffusion will be hidden"),
"lora_hide_unknown_for_versions": shared.OptionInfo([], "Hide networks of unknown versions for model versions", gr.CheckboxGroup, {"choices": ["SD1", "SD2", "SDXL"]}),
"lora_in_memory_limit": shared.OptionInfo(0, "Number of Lora networks to keep cached in memory", gr.Number, {"precision": 0}),
+ "lora_not_found_warning_console": shared.OptionInfo(False, "Lora not found warning in console"),
+ "lora_not_found_gradio_warning": shared.OptionInfo(False, "Lora not found warning popup in webui"),
}))
|