Grids saving to subdirectory when setting unchecked

Fixed grids saving to subdirectory when the setting is unchecked but "save images to subdirectory" was checked.
This commit is contained in:
Daniel 2022-09-26 19:30:18 +10:00 committed by AUTOMATIC1111
parent 258a2d4f06
commit 8dcac9ac81

View File

@ -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)