diff options
author | 48DESIGN <github@48design.de> | 2022-09-27 06:05:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-27 06:05:19 +0000 |
commit | e4145c84537b563a4b0ad7d225764f8c446479b5 (patch) | |
tree | 7a3aa1a9e22632eeb29bab969bd1cf61f8c9ca0f /modules/processing.py | |
parent | 2846ca57028cca1a9ce9cee66d2500b4ac38a9c6 (diff) | |
parent | c0b1177a3203091ca43f2d08f24dd821f1237612 (diff) | |
download | stable-diffusion-webui-gfx803-e4145c84537b563a4b0ad7d225764f8c446479b5.tar.gz stable-diffusion-webui-gfx803-e4145c84537b563a4b0ad7d225764f8c446479b5.tar.bz2 stable-diffusion-webui-gfx803-e4145c84537b563a4b0ad7d225764f8c446479b5.zip |
Merge branch 'master' into notification-sound
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index 0246e094..3abf3181 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -406,7 +406,7 @@ def process_images(p: StableDiffusionProcessing) -> Processed: index_of_first_image = 1
if opts.grid_save:
- images.save_image(grid, p.outpath_grids, "grid", all_seeds[0], all_prompts[0], opts.grid_format, info=infotext(), short_filename=not opts.grid_extended_filename, p=p)
+ images.save_image(grid, p.outpath_grids, "grid", all_seeds[0], all_prompts[0], opts.grid_format, info=infotext(), short_filename=not opts.grid_extended_filename, p=p, grid=True)
devices.torch_gc()
return Processed(p, output_images, all_seeds[0], infotext(), subseed=all_subseeds[0], all_prompts=all_prompts, all_seeds=all_seeds, all_subseeds=all_subseeds, index_of_first_image=index_of_first_image)
|