diff options
author | space-nuko <24979496+space-nuko@users.noreply.github.com> | 2023-03-27 12:04:45 -0400 |
---|---|---|
committer | space-nuko <24979496+space-nuko@users.noreply.github.com> | 2023-03-27 12:04:45 -0400 |
commit | 2a4d3d21242dcc8b2b9cef85aa8f4227e855dc96 (patch) | |
tree | e8c9830b368d1a08e01aec1241ffcd0666a278ce /modules/shared.py | |
parent | 955df7751eef11bb7697e2d77f6b8a6226b21e13 (diff) |
Add temporary "disable all extensions" option for debugging use
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..c79ec67b 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(False, "Disable all extensions (preserves the list of disabled extensions)"),
"sd_checkpoint_hash": OptionInfo("", "SHA256 hash of the current checkpoint"),
}))
|