Merge pull request #15958 from NouberNou/Fix-Grids-Without-Infotexts

Fix for grids without comprehensive infotexts
This commit is contained in:
AUTOMATIC1111 2024-06-08 08:10:18 +03:00 committed by GitHub
commit 3c7384ab60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -569,7 +569,7 @@ class Processed:
self.all_negative_prompts = all_negative_prompts or p.all_negative_prompts or [self.negative_prompt]
self.all_seeds = all_seeds or p.all_seeds or [self.seed]
self.all_subseeds = all_subseeds or p.all_subseeds or [self.subseed]
self.infotexts = infotexts or [info]
self.infotexts = infotexts or [info] * len(images_list)
self.version = program_version()
def js(self):