diff options
author | space-nuko <24979496+space-nuko@users.noreply.github.com> | 2023-03-29 21:46:03 +0000 |
---|---|---|
committer | space-nuko <24979496+space-nuko@users.noreply.github.com> | 2023-03-29 21:55:33 +0000 |
commit | ad5afcaae0b47e9e68b49aacf04cc3ad59d41a8e (patch) | |
tree | c19ff21799dbbd6d639955ddb55805c526e4897f /modules/shared.py | |
parent | 22bcc7be428c94e9408f589966c2040187245d81 (diff) | |
download | stable-diffusion-webui-gfx803-ad5afcaae0b47e9e68b49aacf04cc3ad59d41a8e.tar.gz stable-diffusion-webui-gfx803-ad5afcaae0b47e9e68b49aacf04cc3ad59d41a8e.tar.bz2 stable-diffusion-webui-gfx803-ad5afcaae0b47e9e68b49aacf04cc3ad59d41a8e.zip |
Save/restore working webui/extension configs
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index 5fd0eecb..ffc5e4fe 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -424,6 +424,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("none", "Disable all extensions (preserves the list of disabled extensions)", gr.Radio, {"choices": ["none", "extra", "all"]}),
+ "restore_config_state_file": OptionInfo("", "Config state file to restore from, under 'config-states/' folder"),
"sd_checkpoint_hash": OptionInfo("", "SHA256 hash of the current checkpoint"),
}))
|