diff options
author | space-nuko <24979496+space-nuko@users.noreply.github.com> | 2023-03-27 16:44:49 +0000 |
---|---|---|
committer | space-nuko <24979496+space-nuko@users.noreply.github.com> | 2023-03-27 16:44:49 +0000 |
commit | fc8e1008ea93f98554907f25aaf52f24ce661847 (patch) | |
tree | f60682c3fcd0698ba974781968c8d73bad5c279b /modules/shared.py | |
parent | 2a4d3d21242dcc8b2b9cef85aa8f4227e855dc96 (diff) | |
download | stable-diffusion-webui-gfx803-fc8e1008ea93f98554907f25aaf52f24ce661847.tar.gz stable-diffusion-webui-gfx803-fc8e1008ea93f98554907f25aaf52f24ce661847.tar.bz2 stable-diffusion-webui-gfx803-fc8e1008ea93f98554907f25aaf52f24ce661847.zip |
Make disable configurable between builtin/extra extensions
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 c79ec67b..5fd0eecb 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -423,7 +423,7 @@ options_templates.update(options_section(('postprocessing', "Postprocessing"), { options_templates.update(options_section((None, "Hidden options"), {
"disabled_extensions": OptionInfo([], "Disable these extensions"),
- "disable_all_extensions": OptionInfo(False, "Disable all extensions (preserves the list of disabled extensions)"),
+ "disable_all_extensions": OptionInfo("none", "Disable all extensions (preserves the list of disabled extensions)", gr.Radio, {"choices": ["none", "extra", "all"]}),
"sd_checkpoint_hash": OptionInfo("", "SHA256 hash of the current checkpoint"),
}))
|