diff options
author | Milly <milly.ca@gmail.com> | 2022-10-04 17:13:09 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-06 17:41:23 +0000 |
commit | 070b7d60cf5dac6387b3bfc8f3b3977b620e4fd5 (patch) | |
tree | 3838702a2759cfd42323cf326832fbbee680ae8d /modules/images.py | |
parent | a5a08b0bee531f4402525cae81cdca0013141dfa (diff) | |
download | stable-diffusion-webui-gfx803-070b7d60cf5dac6387b3bfc8f3b3977b620e4fd5.tar.gz stable-diffusion-webui-gfx803-070b7d60cf5dac6387b3bfc8f3b3977b620e4fd5.tar.bz2 stable-diffusion-webui-gfx803-070b7d60cf5dac6387b3bfc8f3b3977b620e4fd5.zip |
Added styles to Processed
So `[styles]` pattern can use in saving image UI.
Diffstat (limited to 'modules/images.py')
-rw-r--r-- | modules/images.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/modules/images.py b/modules/images.py index 810f1446..fa0714fd 100644 --- a/modules/images.py +++ b/modules/images.py @@ -292,12 +292,7 @@ def apply_filename_pattern(x, p, seed, prompt): x = x.replace("[cfg]", str(p.cfg_scale))
x = x.replace("[width]", str(p.width))
x = x.replace("[height]", str(p.height))
-
- #currently disabled if using the save button, will work otherwise
- # if enabled it will cause a bug because styles is not included in the save_files data dictionary
- if hasattr(p, "styles"):
- x = x.replace("[styles]", sanitize_filename_part(", ".join([x for x in p.styles if not x == "None"]) or "None", replace_spaces=False))
-
+ x = x.replace("[styles]", sanitize_filename_part(", ".join([x for x in p.styles if not x == "None"]) or "None", replace_spaces=False))
x = x.replace("[sampler]", sanitize_filename_part(sd_samplers.samplers[p.sampler_index].name, replace_spaces=False))
x = x.replace("[model_hash]", shared.sd_model.sd_model_hash)
|