diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-12-31 20:40:55 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-12-31 20:40:55 +0000 |
commit | f4535f6e4f001314bd155bc6e1b6908e02792b9a (patch) | |
tree | 36962354c54b720bf11d29478b7ba85963278d42 /modules/img2img.py | |
parent | bdbe09827b39be63c9c0b3636132ca58da38ebf6 (diff) | |
download | stable-diffusion-webui-gfx803-f4535f6e4f001314bd155bc6e1b6908e02792b9a.tar.gz stable-diffusion-webui-gfx803-f4535f6e4f001314bd155bc6e1b6908e02792b9a.tar.bz2 stable-diffusion-webui-gfx803-f4535f6e4f001314bd155bc6e1b6908e02792b9a.zip |
make it so that memory/embeddings info is displayed in a separate UI element from generation parameters, and is preserved when you change the displayed infotext by clicking on gallery images
Diffstat (limited to 'modules/img2img.py')
-rw-r--r-- | modules/img2img.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/img2img.py b/modules/img2img.py index 81da4b13..ca58b5d8 100644 --- a/modules/img2img.py +++ b/modules/img2img.py @@ -162,4 +162,4 @@ def img2img(mode: int, prompt: str, negative_prompt: str, prompt_style: str, pro if opts.do_not_show_images:
processed.images = []
- return processed.images, generation_info_js, plaintext_to_html(processed.info)
+ return processed.images, generation_info_js, plaintext_to_html(processed.info), plaintext_to_html(processed.comments)
|