diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-15 05:27:50 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-15 05:27:50 +0000 |
commit | 7e77a38cbc155baf96db66064afbdd40df715335 (patch) | |
tree | 5ef77e90c7d1ce785bc3d95b31e4e0a6cb122989 /modules/processing_scripts | |
parent | d6b79b99631054033ffde645ff32756c1216bc5f (diff) | |
download | stable-diffusion-webui-gfx803-7e77a38cbc155baf96db66064afbdd40df715335.tar.gz stable-diffusion-webui-gfx803-7e77a38cbc155baf96db66064afbdd40df715335.tar.bz2 stable-diffusion-webui-gfx803-7e77a38cbc155baf96db66064afbdd40df715335.zip |
get XYZ plot to work with recent changes to refined specified in fields of p rather than in settings
Diffstat (limited to 'modules/processing_scripts')
-rw-r--r-- | modules/processing_scripts/refiner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing_scripts/refiner.py b/modules/processing_scripts/refiner.py index b389c4ef..29ccb78f 100644 --- a/modules/processing_scripts/refiner.py +++ b/modules/processing_scripts/refiner.py @@ -42,7 +42,7 @@ class ScriptRefiner(scripts.ScriptBuiltinUI): # the actual implementation is in sd_samplers_common.py, apply_refiner
if not enable_refiner or refiner_checkpoint in (None, "", "None"):
- p.refiner_checkpoint_info = None
+ p.refiner_checkpoint = None
p.refiner_switch_at = None
else:
p.refiner_checkpoint = refiner_checkpoint
|