diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-03-28 16:42:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 16:42:09 +0000 |
commit | daa5a83bb7b38a46b875a4df2f9a35b848359297 (patch) | |
tree | 264bf06c8a97caea33d709b75beaa3fb481cebba /modules/shared.py | |
parent | cb3e1ba9bd5a24373f10406f14c8c8a36dd3fb08 (diff) | |
parent | 56f62d3851ff08dc1574a9ff2a05271f3730f3f7 (diff) | |
download | stable-diffusion-webui-gfx803-daa5a83bb7b38a46b875a4df2f9a35b848359297.tar.gz stable-diffusion-webui-gfx803-daa5a83bb7b38a46b875a4df2f9a35b848359297.tar.bz2 stable-diffusion-webui-gfx803-daa5a83bb7b38a46b875a4df2f9a35b848359297.zip |
Merge pull request #9052 from space-nuko/temp-disable-extensions
Temporary disable extensions option
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py index 3ad0862b..5fd0eecb 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -422,7 +422,8 @@ options_templates.update(options_section(('postprocessing', "Postprocessing"), { }))
options_templates.update(options_section((None, "Hidden options"), {
- "disabled_extensions": OptionInfo([], "Disable those extensions"),
+ "disabled_extensions": OptionInfo([], "Disable these 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"),
}))
|